Unverified Commit 7ea8a93b authored by Mohammad Parvin's avatar Mohammad Parvin Committed by GitHub

feat(helm): add aliases (#11361)

parent fc44c49c
# Helm plugin # Helm plugin
This plugin adds completion for [Helm](https://helm.sh/), the Kubernetes package manager. This plugin adds completion and aliases for [Helm](https://helm.sh/), the Kubernetes package manager.
To use it, add `helm` to the plugins array in your zshrc file: To use it, add `helm` to the plugins array in your zshrc file:
```zsh ```zsh
plugins=(... helm) plugins=(... helm)
``` ```
## Aliases
| Alias | Full command |
| ----- | ------------ |
| h | helm |
| hin | helm install |
| hse | helm search |
| hup | helm upgrade |
...@@ -11,3 +11,8 @@ else ...@@ -11,3 +11,8 @@ else
source "$ZSH_CACHE_DIR/completions/_helm" source "$ZSH_CACHE_DIR/completions/_helm"
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &| helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
fi fi
alias h='helm'
alias hin='helm install'
alias hse='helm search'
alias hup='helm upgrade'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment