mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-29 04:53:17 +02:00
Merge branch 'master' into feature/kubectl-new-alias
This commit is contained in:
commit
1d23af7bf4
7 changed files with 238 additions and 11 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue