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