Fix HelmChartTemplateSpec missing valuesFiles info

Signed-off-by: Filinto Duran <duranto@gmail.com>
This commit is contained in:
Filinto Duran 2021-05-22 08:28:37 -05:00
parent a4fcd72075
commit 261fc6bda1
No known key found for this signature in database
GPG Key ID: 840C746760E29116
1 changed files with 12 additions and 2 deletions

View File

@ -155,9 +155,19 @@ type HelmChartTemplateSpec struct {
// +optional // +optional
Interval *metav1.Duration `json:"interval,omitempty"` Interval *metav1.Duration `json:"interval,omitempty"`
// Alternative values file to use as the default chart values, expected to be a // Alternative list of values files to use as the chart values (values.yaml
// relative path in the SourceRef. Ignored when omitted. // is not included by default), expected to be a relative path in the SourceRef.
// Values files are merged in the order of this list with the last file overriding
// the first. Ignored when omitted.
// +optional // +optional
ValuesFiles []string `json:"valuesFiles,omitempty"`
// Alternative values file to use as the default chart values, expected to
// be a relative path in the SourceRef. Deprecated in favor of ValuesFiles,
// for backwards compatibility the file defined here is merged before the
// ValuesFiles items. Ignored when omitted.
// +optional
// +deprecated
ValuesFile string `json:"valuesFile,omitempty"` ValuesFile string `json:"valuesFile,omitempty"`
} }