diff --git a/README.md b/README.md index e13d33b..65cec7b 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ release 0.3.2 Update values of a release, pull charts from releases ``` $ helm release + usage: helm release [ pull | upgrade ] ``` Available Commands: @@ -72,6 +73,7 @@ $ ls /home/me/helm-charts/nginx-ingress-0.13.2/ Chart.yaml crds README.md templates values-icp.yaml values-nsm.yaml values-plus.yaml values.yaml ``` + ### `helm release upgrade` This command accepts the same parameters as `helm upgrade` except specifying the helm chart. As an optional parameter you can pass `--destination` directory where the chart will be dumped, by default chart dumped to `/tmp`. After release update chart will be deleted. diff --git a/lib/api/upgrade.sh b/lib/api/upgrade.sh index 10b3c47..c14ccce 100644 --- a/lib/api/upgrade.sh +++ b/lib/api/upgrade.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash + help_text="helm release upgrade - Update release values without specifying the Helm Chart used for deployment. Usage: helm release upgrade [RELEASE NAME] [-d | --destination ] [helm upgrade arguments]"