0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

feat(terraform): add new terraform and helm aliases (#11923)

This commit is contained in:
reda 2024-01-13 12:36:26 +01:00 committed by GitHub
parent 1c8dee848d
commit 15479ca5ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View file

@ -10,9 +10,10 @@ plugins=(... helm)
## Aliases
| Alias | Full command |
| ----- | ------------ |
| h | helm |
| hin | helm install |
| hse | helm search |
| hup | helm upgrade |
| Alias | Full command |
| ----- | -------------- |
| h | helm |
| hin | helm install |
| hun | helm uninstall |
| hse | helm search |
| hup | helm upgrade |

View file

@ -14,5 +14,6 @@ fi
alias h='helm'
alias hin='helm install'
alias hun='helm uninstall'
alias hse='helm search'
alias hup='helm upgrade'

View file

@ -26,6 +26,9 @@ plugins=(... terraform)
| `tfo` | `terraform output` |
| `tfp` | `terraform plan` |
| `tfv` | `terraform validate` |
| `tfs` | `terraform state` |
| `tfsh`| `terraform show` |
## Prompt function

View file

@ -24,3 +24,5 @@ alias tfi='terraform init'
alias tfo='terraform output'
alias tfp='terraform plan'
alias tfv='terraform validate'
alias tfs='terraform state'
alias tfsh='terraform show'