Fix HelmChartTemplateSpec missing valuesFiles info
Signed-off-by: Filinto Duran <duranto@gmail.com>
This commit is contained in:
parent
a4fcd72075
commit
261fc6bda1
|
@ -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"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue