2021-12-28 18:49:08 +00:00
|
|
|
if (( ! $+commands[helm] )); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2022-01-17 11:45:59 +00:00
|
|
|
# If the completion file does not exist, generate it and then source it
|
|
|
|
# Otherwise, source it and regenerate in the background
|
2021-12-28 18:49:08 +00:00
|
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
|
2022-02-24 18:23:15 +00:00
|
|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null
|
2022-01-17 11:45:59 +00:00
|
|
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
|
|
|
else
|
|
|
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
2022-02-24 18:23:15 +00:00
|
|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
|
2017-11-06 14:49:27 +00:00
|
|
|
fi
|
2022-12-02 12:49:00 +00:00
|
|
|
|
|
|
|
alias h='helm'
|
|
|
|
alias hin='helm install'
|
|
|
|
alias hse='helm search'
|
|
|
|
alias hup='helm upgrade'
|