Kubernetes

Is it possible to override values in values.yaml file when installing a chart?

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

Yes. You can pass another values file: helm install --values=override-values.yaml [CHART_NAME]

Or directly on the command line: helm install --set some_key=some_value