Onur AKKÖSE
Onur AKKÖSE

Reputation: 102

Helmchart values yaml override with helmfile

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 ".".

enter image description here

Upvotes: 0

Views: 1561

Answers (1)

Vijayendar Gururaja
Vijayendar Gururaja

Reputation: 860

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.

Upvotes: 2

Related Questions