Merge branch 'master' into feature/kubectl-new-alias

This commit is contained in:
Serhii Kuts 2018-03-13 22:06:53 +02:00 committed by GitHub
commit 1d23af7bf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 238 additions and 11 deletions

View file

@ -9,6 +9,9 @@ fi
# This command is used ALOT both below and in daily life
alias k=kubectl
# Apply a YML file
alias kaf='k apply -f'
# Drop into an interactive terminal on a container
alias keti='k exec -ti'
@ -20,7 +23,6 @@ alias kccc='k config current-context'
# Pod management.
alias kgp='k get pods'
alias klp='k logs pods'
alias kep='k edit pods'
alias kdp='k describe pods'
alias kdelp='k delete pods'
@ -54,3 +56,7 @@ alias kru='k rollout undo'
# Port forwarding
alias kpf="k port-forward"
# Logs
alias kl='k logs'
alias klf='k logs -f'