Drop interval fallback for HelmChart

This commit is contained in:
Hidde Beydals 2020-04-14 11:16:29 +02:00 committed by stefanprodan
parent e0eb330d42
commit 51f82e72a8
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ type HelmChartSpec struct {
HelmRepositoryRef v1.LocalObjectReference `json:"helmRepositoryRef"`
// The interval at which to check the referenced HelmRepository index
// for updates. Defaults to the interval of the referenced HelmRepository.
// +optional
Interval metav1.Duration `json:"interval,omitempty"`
// for updates.
// +required
Interval metav1.Duration `json:"interval"`
}
```