Skip to content

Commit 577925c

Browse files
authored
Merge pull request #266 from filintod/fix-helm-release-spec-doc-values
Fix HelmChartTemplateSpec Doc missing valuesFiles info
2 parents a4fcd72 + 261fc6b commit 577925c

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

docs/spec/v2beta1/helmreleases.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,19 @@ type HelmChartTemplateSpec struct {
155155
// +optional
156156
Interval *metav1.Duration `json:"interval,omitempty"`
157157

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.
160162
// +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
161171
ValuesFile string `json:"valuesFile,omitempty"`
162172
}
163173

0 commit comments

Comments
 (0)