Commit 31ea2018 authored by Sebastien Plisson's avatar Sebastien Plisson Committed by Matt Butcher

docs(helm): Document how to update a release idempotently (#3148)

* docs(helm): Document how to update a release idempotently

To use the same command when installing and upgrading a release, using helm upgrade with '--install' works.

Closes #3134

* Upgrade instead of update
parent bc45e901
...@@ -231,3 +231,10 @@ cryptographic keys, and so on. These are fine to use. But be aware that ...@@ -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.
## Upgrade 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>
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment