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.

15 lines
323 B
Bash

# vi: ft=bash
if [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then
. "$(brew --prefix)/share/bash-completion/bash_completion"
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