From bc30c9ad93bb4700f505c37c79f6096791327f9b Mon Sep 17 00:00:00 2001 From: Darth Vader Date: Thu, 15 Aug 2024 16:52:50 -0300 Subject: [PATCH] Include news aliases for Helm commands --- plugins/helm/README.md | 37 +++++++++++++++++++++++++++++------- plugins/helm/helm.plugin.zsh | 26 ++++++++++++++++++++++++- 2 files changed, 55 insertions(+), 8 deletions(-) diff --git a/plugins/helm/README.md b/plugins/helm/README.md index dcbb30b6c..e82207e33 100644 --- a/plugins/helm/README.md +++ b/plugins/helm/README.md @@ -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 | \ No newline at end of file diff --git a/plugins/helm/helm.plugin.zsh b/plugins/helm/helm.plugin.zsh index e754a6541..36f819d3a 100644 --- a/plugins/helm/helm.plugin.zsh +++ b/plugins/helm/helm.plugin.zsh @@ -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' + \ No newline at end of file