Add more kubectl aliases

* Add the alias `kd` for `kubectl describe`
 * Add the alias `kg` for `kubectl get`
This commit is contained in:
Mirco Haug 2020-04-23 16:23:02 +02:00
commit 1ceaebb586
2 changed files with 4 additions and 0 deletions

View file

@ -34,6 +34,8 @@ alias kcgc='kubectl config get-contexts'
# General aliases
alias kdel='kubectl delete'
alias kdelf='kubectl delete -f'
alias kg='kubectl get'
alias kd='kubectl describe'
# Pod management.
alias kgp='kubectl get pods'