mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Include news aliases for Helm commands
This commit is contained in:
parent
b0204f7839
commit
bc30c9ad93
2 changed files with 55 additions and 8 deletions
|
|
@ -10,10 +10,33 @@ plugins=(... helm)
|
||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Full command |
|
| Alias | Full command |
|
||||||
| ----- | -------------- |
|
| ----- | ----------------------------------|
|
||||||
| h | helm |
|
| h | helm |
|
||||||
| hin | helm install |
|
| hco | helm completion |
|
||||||
| hun | helm uninstall |
|
| hct | helm create |
|
||||||
| hse | helm search |
|
| hde | helm delete |
|
||||||
| hup | helm upgrade |
|
| 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 |
|
||||||
|
|
@ -13,7 +13,31 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias h='helm'
|
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 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 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 hup='helm upgrade'
|
||||||
|
alias hvn='helm version'
|
||||||
|
alias hvy='helm verify'
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue