ohmyzsh/plugins/kubectl/kubectl.plugin.zsh
2017-09-11 10:21:37 -03:00

9 lines
202 B
Bash

# Autocompletion for kubectl, the command line interface for Kubernetes
#
# Author: https://github.com/pstadler
if [ $commands[kubectl] ]; then
source <(kubectl completion zsh)
fi
alias k='kubectl'