Skip to content

Instantly share code, notes, and snippets.

@axdotl
Created September 25, 2020 12:44
Show Gist options
  • Save axdotl/ca27d8f2a283ca404f017c6a2b0a372a to your computer and use it in GitHub Desktop.
Save axdotl/ca27d8f2a283ca404f017c6a2b0a372a to your computer and use it in GitHub Desktop.
OhMyZsh plugin which adds useful aliases for kubectl-neat plugin
## Requires https://github.com/itaysk/kubectl-neat
if [[ -z $commands[kubectl neat] ]]; then
echo 'kubectl is not installed.'
echo 'See https://github.com/itaysk/kubectl-neat'
return 1
fi
# Pod
alias kgpn='kubectl neat get -- pod'
# Service
alias kgsn='kubectl neat get -- svc'
# Deployment
alias kgdn='kubectl neat get -- deploy'
# Ingress
alias kgin='kubectl neat get -- ing'
# Statefulset
alias kgssn='kubectl neat get -- statefulset'
# PVC
alias kgpvcn='kubectl neat get -- pvc'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment