1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

kubectl: add kga and kgaa aliases (#6744)

This commit is contained in:
Patrick Stegmann 2018-10-02 20:53:38 +02:00 committed by Marc Cornellà
parent 69bd9ab3f0
commit 64e262ea48

View file

@ -65,7 +65,11 @@ alias krh='kubectl rollout history'
alias kru='kubectl rollout undo'
# Port forwarding
alias kpf="k port-forward"
alias kpf="kubectl port-forward"
# Tools for accessing all information
alias kga='kubectl get all'
alias kgaa='kubectl get all --all-namespaces'
# Logs
alias kl='kubectl logs'