mirror of
https://github.com/KevinMidboe/dotfiles.git
synced 2025-10-29 17:40:19 +00:00
Added oh-my-zsh in all its glory
This commit is contained in:
66
.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh
Normal file
66
.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh
Normal file
@@ -0,0 +1,66 @@
|
||||
if (( $+commands[kubectl] )); then
|
||||
__KUBECTL_COMPLETION_FILE="${ZSH_CACHE_DIR}/kubectl_completion"
|
||||
|
||||
if [[ ! -f $__KUBECTL_COMPLETION_FILE ]]; then
|
||||
kubectl completion zsh >! $__KUBECTL_COMPLETION_FILE
|
||||
fi
|
||||
|
||||
[[ -f $__KUBECTL_COMPLETION_FILE ]] && source $__KUBECTL_COMPLETION_FILE
|
||||
|
||||
unset __KUBECTL_COMPLETION_FILE
|
||||
fi
|
||||
|
||||
# This command is used a LOT 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'
|
||||
|
||||
# Manage configuration quickly to switch contexts between local, dev ad staging.
|
||||
alias kcuc='k config use-context'
|
||||
alias kcsc='k config set-context'
|
||||
alias kcdc='k config delete-context'
|
||||
alias kccc='k config current-context'
|
||||
|
||||
# Pod management.
|
||||
alias kgp='k get pods'
|
||||
alias kep='k edit pods'
|
||||
alias kdp='k describe pods'
|
||||
alias kdelp='k delete pods'
|
||||
|
||||
# Service management.
|
||||
alias kgs='k get svc'
|
||||
alias kes='k edit svc'
|
||||
alias kds='k describe svc'
|
||||
alias kdels='k delete svc'
|
||||
|
||||
# Ingress management
|
||||
alias kgi='k get ingress'
|
||||
alias kei='k edit ingress'
|
||||
alias kdi='k describe ingress'
|
||||
alias kdeli='k delete ingress'
|
||||
|
||||
# Secret management
|
||||
alias kgsec='k get secret'
|
||||
alias kdsec='k describe secret'
|
||||
alias kdelsec='k delete secret'
|
||||
|
||||
# Deployment management.
|
||||
alias kgd='k get deployment'
|
||||
alias ked='k edit deployment'
|
||||
alias kdd='k describe deployment'
|
||||
alias kdeld='k delete deployment'
|
||||
alias ksd='k scale deployment'
|
||||
alias krsd='k rollout status deployment'
|
||||
|
||||
# Rollout management.
|
||||
alias kgrs='k get rs'
|
||||
alias krh='k rollout history'
|
||||
alias kru='k rollout undo'
|
||||
|
||||
# Logs
|
||||
alias kl='k logs'
|
||||
alias klf='k logs -f'
|
||||
Reference in New Issue
Block a user