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.
17 lines
376 B
Bash
17 lines
376 B
Bash
# vi: ft=bash
|
|
|
|
if command -v brew &> /dev/null; then
|
|
if [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then
|
|
. "$(brew --prefix)/share/bash-completion/bash_completion"
|
|
fi
|
|
fi
|
|
|
|
if command -v kubectl > /dev/null 2>&1; then
|
|
source <(kubectl completion bash)
|
|
fi
|
|
|
|
if command -v helm > /dev/null 2>&1; then
|
|
source <(helm completion bash)
|
|
fi
|
|
|