mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-16 02:40:08 +00:00
feat(terraform): add new terraform and helm aliases (#11923)
This commit is contained in:
parent
1c8dee848d
commit
15479ca5ae
4 changed files with 13 additions and 6 deletions
|
@ -11,8 +11,9 @@ plugins=(... helm)
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Full command |
|
| Alias | Full command |
|
||||||
| ----- | ------------ |
|
| ----- | -------------- |
|
||||||
| h | helm |
|
| h | helm |
|
||||||
| hin | helm install |
|
| hin | helm install |
|
||||||
|
| hun | helm uninstall |
|
||||||
| hse | helm search |
|
| hse | helm search |
|
||||||
| hup | helm upgrade |
|
| hup | helm upgrade |
|
||||||
|
|
|
@ -14,5 +14,6 @@ fi
|
||||||
|
|
||||||
alias h='helm'
|
alias h='helm'
|
||||||
alias hin='helm install'
|
alias hin='helm install'
|
||||||
|
alias hun='helm uninstall'
|
||||||
alias hse='helm search'
|
alias hse='helm search'
|
||||||
alias hup='helm upgrade'
|
alias hup='helm upgrade'
|
||||||
|
|
|
@ -26,6 +26,9 @@ plugins=(... terraform)
|
||||||
| `tfo` | `terraform output` |
|
| `tfo` | `terraform output` |
|
||||||
| `tfp` | `terraform plan` |
|
| `tfp` | `terraform plan` |
|
||||||
| `tfv` | `terraform validate` |
|
| `tfv` | `terraform validate` |
|
||||||
|
| `tfs` | `terraform state` |
|
||||||
|
| `tfsh`| `terraform show` |
|
||||||
|
|
||||||
|
|
||||||
## Prompt function
|
## Prompt function
|
||||||
|
|
||||||
|
|
|
@ -24,3 +24,5 @@ alias tfi='terraform init'
|
||||||
alias tfo='terraform output'
|
alias tfo='terraform output'
|
||||||
alias tfp='terraform plan'
|
alias tfp='terraform plan'
|
||||||
alias tfv='terraform validate'
|
alias tfv='terraform validate'
|
||||||
|
alias tfs='terraform state'
|
||||||
|
alias tfsh='terraform show'
|
||||||
|
|
Loading…
Reference in a new issue