Add alias for kubectls dry-run flag

This commit is contained in:
Christoph Ebeling 2021-01-06 13:00:20 +01:00
parent 86f805280f
commit ede3619cd0

View File

@ -35,6 +35,10 @@ alias kcgc='kubectl config get-contexts'
alias kdel='kubectl delete'
alias kdelf='kubectl delete -f'
# Dry runs
alias kdr='kubectl --dry-run=client'
alias kdrs='kubectl --dry-run=server'
# Pod management.
alias kgp='kubectl get pods'
alias kgpa='kubectl get pods --all-namespaces'