- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
Docker remove dangling images: docker rmi -f $(docker images --filter='dangling=true' -q)
.
Find and replace: find . -type f -name '*.txt' -exec sed -i '' s/this/that/ {} +
.
Find pid of something running on : lsof -i :port
.
I hereby claim:
To claim this, I am signing this object:
Rolling update "www" containers of "frontend" deployment, updating the image:
kubectl set image deployment/frontend www=image:v2
Check the history of deployments including the revision:
kubectl rollout history deployment/frontend
Rollback to the previous deployment:
kubectl rollout undo deployment/frontend