1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Add aliases for kubectl nodes (#7093)

* Add aliases for kubectl nodes

* change to have 'o' at the end.

My teammate noticed there's no namespacing shortcuts either and will be doing a PR on them with kgna.
This commit is contained in:
Dan O'Brien 2018-08-29 14:51:50 -04:00 committed by Robby Russell
parent 77d75d7fcd
commit 39221643b0

View file

@ -64,3 +64,9 @@ alias kru='kubectl rollout undo'
# Logs
alias kl='kubectl logs'
alias klf='kubectl logs -f'
# Node Management
alias kgno='kubectl get nodes'
alias keno='kubectl edit node'
alias kdno='kubectl describe node'
alias kdelno='kubectl delete node'