Include news aliases for Helm commands

This commit is contained in:
Darth Vader 2024-08-15 16:52:50 -03:00
commit bc30c9ad93
2 changed files with 55 additions and 8 deletions

View file

@ -10,10 +10,33 @@ plugins=(... helm)
## Aliases
| Alias | Full command |
| ----- | -------------- |
| h | helm |
| hin | helm install |
| hun | helm uninstall |
| hse | helm search |
| hup | helm upgrade |
| Alias | Full command |
| ----- | ----------------------------------|
| h | helm |
| hco | helm completion |
| hct | helm create |
| hde | helm delete |
| hen | helm env |
| hgm | helm get manifest |
| hhp | helm help |
| hid | helm install --debug --dry-run |
| hin | helm install |
| hls | helm list |
| hlt | helm lint |
| hpl | helm pull |
| hps | helm push |
| hra | helm repo add |
| hrb | helm rollback |
| hrr | helm repo remove |
| hru | helm repo update |
| hse | helm search |
| hsh | helm show |
| hss | helm satuts |
| hst | helm history |
| hte | helm template |
| htt | helm test |
| hui | helm upgrade -i |
| hun | helm uninstall |
| hup | helm upgrade |
| hvn | helm version |
| hvy | helm verify |

View file

@ -13,7 +13,31 @@ else
fi
alias h='helm'
alias hco='helm completion'
alias hct='helm create'
alias hde='helm delete'
alias hen='helm env'
alias hgm='helm get manifest'
alias hhp='helm help'
alias hid='helm install --debug --dry-run'
alias hin='helm install'
alias hun='helm uninstall'
alias hls='helm list'
alias hlt='helm lint'
alias hpl='helm pull'
alias hps='helm push'
alias hra='helm repo add'
alias hrb='helm rollback'
alias hrr='helm repo remove'
alias hru='helm repo update'
alias hse='helm search'
alias hsh='helm show'
alias hss='helm satuts'
alias hst='helm history'
alias hte='helm template'
alias htt='helm test'
alias hui='helm upgrade -i'
alias hun='helm uninstall'
alias hup='helm upgrade'
alias hvn='helm version'
alias hvy='helm verify'