File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -155,9 +155,19 @@ type HelmChartTemplateSpec struct {
155
155
// +optional
156
156
Interval *metav1.Duration ` json:"interval,omitempty"`
157
157
158
- // Alternative values file to use as the default chart values, expected to be a
159
- // relative path in the SourceRef. Ignored when omitted.
158
+ // Alternative list of values files to use as the chart values (values.yaml
159
+ // is not included by default), expected to be a relative path in the SourceRef.
160
+ // Values files are merged in the order of this list with the last file overriding
161
+ // the first. Ignored when omitted.
160
162
// +optional
163
+ ValuesFiles []string ` json:"valuesFiles,omitempty"`
164
+
165
+ // Alternative values file to use as the default chart values, expected to
166
+ // be a relative path in the SourceRef. Deprecated in favor of ValuesFiles,
167
+ // for backwards compatibility the file defined here is merged before the
168
+ // ValuesFiles items. Ignored when omitted.
169
+ // +optional
170
+ // +deprecated
161
171
ValuesFile string ` json:"valuesFile,omitempty"`
162
172
}
163
173
You can’t perform that action at this time.
0 commit comments