ohmyzsh/plugins/kubectl/kubectl.plugin.zsh
Patrick Stegmann 442b659ece
Adds more aliases to the kubectl plugin
The sources are:

Myself for kga and kgaa
@debovema for kgn
@raybotha for kpf
@DrMegavolt for kgpl
2018-04-19 11:29:23 +02:00

68 lines
1.6 KiB
Bash

# Autocompletion for kubectl, the command line interface for Kubernetes
#
# Author: https://github.com/pstadler
if [ $commands[kubectl] ]; then
source <(kubectl completion zsh)
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'
# 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'
alias kgpl='function _kgpl(){ label=$1; shift; kgp -l $label $*; };_kgpl'
# Service management.
alias kgs='k get svc'
alias kes='k edit svc'
alias kds='k describe svc'
alias kdels='k delete svc'
# 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'
# Node management
alias kgn='k get nodes'
alias kdn='k describe node'
# Tools for accessing all information
alias kga='k get all'
alias kgaa='k get all --all-namespaces'
# Forward a local port to a pod
alias kpf='k port-forward'
# Logs
alias kl='k logs'
alias klf='k logs -f'