I try to my custom chart's values.yaml change with overridevalue.yaml to override values. However when I install the chart with helm repo add command and try to reach values yaml it throws me "values.yaml does not exist in ".".
Asked
Active
Viewed 916 times
0
-
Does changing `values.yaml` to `./values.yaml` fix the issue? – Dec 07 '21 at 11:01
1 Answers
2
Helm automatically uses values.yaml file from chart's root directory.
you can pass additional values or override existing ones by passing the file during installation:
$ helm install -f override_values.yaml app ./app
you can pass multiple -f <values_yaml> .. ..
. The priority will be given to the last (right-most) file specified for overriding existing values.

Vijayendar Gururaja
- 752
- 1
- 9
- 16