Override on the CLI with --set
Quick single-value tweaks at install time.
Tweak Without a File
Sometimes you just want to change one knob. The --set flag overrides a single value right on the command line. ⚡
helm install web bitnami/nginx --set replicaCount=3Key Equals Value
The syntax is simple: a key path, an equals sign, then the value. Helm slots replicaCount straight into the chart's values.
--set replicaCount=3All lessons in this course
- Inspecting Defaults with helm show values
- Override on the CLI with --set
- Supplying a Custom values File with -f
- How --set and -f Are Merged