2021-12-28 19:49:08 +01:00
|
|
|
if (( ! $+commands[helm] )); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2022-01-17 12:45:59 +01: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 19:49:08 +01:00
|
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
|
2022-02-24 19:23:15 +01:00
|
|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null
|
2022-01-17 12:45:59 +01:00
|
|
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
|
|
|
else
|
|
|
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
2022-02-24 19:23:15 +01:00
|
|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
|
2017-11-06 15:49:27 +01:00
|
|
|
fi
|
2022-12-02 13:49:00 +01:00
|
|
|
|
|
|
|
alias h='helm'
|
|
|
|
alias hin='helm install'
|
|
|
|
alias hse='helm search'
|
|
|
|
alias hup='helm upgrade'
|