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
228 B
Bash
11 lines
228 B
Bash
4 years ago
|
#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
|