#3134 Document how to update a release idempotently

To use the same command when installing and upgrading a release, using helm upgrade with --install works.
pull/3147/head
Sebastien Plisson 8 years ago committed by GitHub
parent 15053e6750
commit 8e091036ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -231,3 +231,10 @@ cryptographic keys, and so on. These are fine to use. But be aware that
during upgrades, templates are re-executed. When a template run during upgrades, templates are re-executed. When a template run
generates data that differs from the last run, that will trigger an generates data that differs from the last run, that will trigger an
update of that resource. update of that resource.
## Update a release idempotently
In order to use the same command when installing and upgrading a release, use the following comand:
```shell
helm upgrade --install <release name> --values <values file> <chart directory>
```

Loading…
Cancel
Save