@scotty_walker
To pass variables to helm install --set
parameters, you can follow these steps:
1 2 |
variable1: value1 variable2: value2 |
1
|
helm install mychart ./path/to/chart --values values.yaml |
1 2 |
variable1: {{ .Values.variable1 }} variable2: {{ .Values.variable2 }} |
These variables will be replaced with the values specified in the values.yaml
file when the chart is installed.