Merge pull request #1794 from tallpauley/patch-1

making precedence explanation less ambiguous
pull/1795/head
Matt Butcher 8 years ago committed by GitHub
commit ed8fc8d81c

@ -7,7 +7,7 @@ In the previous section we looked at the built-n objects that Helm templates off
- A values file if passed into `helm install` or `helm update` with the `-f` flag (`helm install -f myvals.yaml ./mychart`)
- Individual parameters passed with `--set` (such as `helm install --set foo=bar ./mychart`)
The list above is in order of specificity: `values.yaml` is the default, and can be overridden by a parent chart's `values.yaml`, which can in turn be overridden by a user-supplied values file or `--set` parameters.
The list above is in order of specificity: `values.yaml` is the default, which can be overridden by a parent chart's `values.yaml`, which can in turn be overridden by a user-supplied values file, which can in turn be overridden by `--set` parameters.
Values files are plain YAML files. Let's edit `mychart/values.yaml` and then edit our ConfigMap template.

Loading…
Cancel
Save