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.
|
#ft=sh
|
|
#shellcheck disable=1090,2039
|
|
|
|
if [ "${BASH_VERSION}" != "" ] && [ "$(ps -p $$ -ocomm=)" != sh ]; then
|
|
source <(kubectl completion bash)
|
|
fi
|
|
|
|
if [ "${ZSH_VERSION}" != "" ]; then
|
|
source <(kubectl completion zsh)
|
|
fi
|