You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
268 B
Bash

#shellcheck disable=1090,2039,SC2148
if [ "${BASH_VERSION}" != "" ] && [ "$(ps -p $$ -ocomm=)" != sh ]; then
source <(kubectl completion bash)
fi
if [ "${ZSH_VERSION}" != "" ]; then
autoload -U +X compinit && compinit
source <(kubectl completion zsh)
fi