diff --git a/api/kyverno/v2alpha1/global_context_entry_types.go b/api/kyverno/v2alpha1/global_context_entry_types.go index e7b5d76d8c..57ce2f52af 100644 --- a/api/kyverno/v2alpha1/global_context_entry_types.go +++ b/api/kyverno/v2alpha1/global_context_entry_types.go @@ -16,6 +16,8 @@ limitations under the License. package v2alpha1 import ( + "time" + kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/validation/field" @@ -78,7 +80,10 @@ func (c *GlobalContextEntrySpec) IsResource() bool { // Validate implements programmatic validation func (c *GlobalContextEntrySpec) Validate(path *field.Path) (errs field.ErrorList) { if c.IsResource() && c.IsAPICall() { - errs = append(errs, field.Forbidden(path.Child("resource"), "An External API Call entry requires a url")) + errs = append(errs, field.Forbidden(path.Child("kubernetesResource"), "A global context entry should be either have KubernetesResource or APICall")) + } + if !c.IsResource() && !c.IsAPICall() { + errs = append(errs, field.Forbidden(path.Child("kubernetesResource"), "A global context entry should be either have KubernetesResource or APICall")) } if c.IsResource() { errs = append(errs, c.KubernetesResource.Validate(path.Child("resource"))...) @@ -115,13 +120,13 @@ type KubernetesResource struct { // Validate implements programmatic validation func (k *KubernetesResource) Validate(path *field.Path) (errs field.ErrorList) { if k.Group == "" { - errs = append(errs, field.Required(path.Child("group"), "An Resource entry requires a group")) + errs = append(errs, field.Required(path.Child("group"), "A Resource entry requires a group")) } if k.Version == "" { - errs = append(errs, field.Required(path.Child("version"), "An Resource entry requires a version")) + errs = append(errs, field.Required(path.Child("version"), "A Resource entry requires a version")) } if k.Resource == "" { - errs = append(errs, field.Required(path.Child("resource"), "An Resource entry requires a resource")) + errs = append(errs, field.Required(path.Child("resource"), "A Resource entry requires a resource")) } return errs } @@ -129,9 +134,10 @@ func (k *KubernetesResource) Validate(path *field.Path) (errs field.ErrorList) { // ExternalAPICall stores infos about API call that should be cached type ExternalAPICall struct { kyvernov1.APICall `json:",inline,omitempty"` - // RefreshIntervalSeconds defines the interval at which to poll the APICall - // +kubebuilder:default=0 - RefreshIntervalSeconds int64 `json:"refreshIntervalSeconds,omitempty"` + // RefreshInterval defines the interval in duration at which to poll the APICall + // +kubebuilder:validation:Format=duration + // +kubebuilder:default=`10m` + RefreshInterval *metav1.Duration `json:"refreshInterval,omitempty"` } // Validate implements programmatic validation @@ -139,8 +145,8 @@ func (e *ExternalAPICall) Validate(path *field.Path) (errs field.ErrorList) { if e.Service.URL == "" { errs = append(errs, field.Required(path.Child("url"), "An External API Call entry requires a url")) } - if e.RefreshIntervalSeconds <= 0 { - errs = append(errs, field.Required(path.Child("refreshIntervalSeconds"), "An Resource entry requires a refresh interval greater than 0 seconds")) + if e.RefreshInterval.Duration == 0*time.Second { + errs = append(errs, field.Required(path.Child("refreshIntervalSeconds"), "A Resource entry requires a refresh interval greater than 0 seconds")) } return errs } diff --git a/api/kyverno/v2alpha1/zz_generated.deepcopy.go b/api/kyverno/v2alpha1/zz_generated.deepcopy.go index 1739785a14..e4c182f475 100644 --- a/api/kyverno/v2alpha1/zz_generated.deepcopy.go +++ b/api/kyverno/v2alpha1/zz_generated.deepcopy.go @@ -153,6 +153,11 @@ func (in *ClusterCleanupPolicyList) DeepCopyObject() runtime.Object { func (in *ExternalAPICall) DeepCopyInto(out *ExternalAPICall) { *out = *in in.APICall.DeepCopyInto(&out.APICall) + if in.RefreshInterval != nil { + in, out := &in.RefreshInterval, &out.RefreshInterval + *out = new(v1.Duration) + **out = **in + } return } diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_globalcontextentries.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_globalcontextentries.yaml index 0c0baf012d..01a62794ee 100644 --- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_globalcontextentries.yaml +++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_globalcontextentries.yaml @@ -77,12 +77,12 @@ spec: - GET - POST type: string - refreshIntervalSeconds: - default: 0 - description: RefreshIntervalSeconds defines the interval at which - to poll the APICall - format: int64 - type: integer + refreshInterval: + default: 10m + description: RefreshInterval defines the interval in duration + at which to poll the APICall + format: duration + type: string service: description: Service is an API call to a JSON web service properties: diff --git a/config/crds/kyverno/kyverno.io_globalcontextentries.yaml b/config/crds/kyverno/kyverno.io_globalcontextentries.yaml index 7680cc4ebe..992e2ec7c0 100644 --- a/config/crds/kyverno/kyverno.io_globalcontextentries.yaml +++ b/config/crds/kyverno/kyverno.io_globalcontextentries.yaml @@ -71,12 +71,12 @@ spec: - GET - POST type: string - refreshIntervalSeconds: - default: 0 - description: RefreshIntervalSeconds defines the interval at which - to poll the APICall - format: int64 - type: integer + refreshInterval: + default: 10m + description: RefreshInterval defines the interval in duration + at which to poll the APICall + format: duration + type: string service: description: Service is an API call to a JSON web service properties: diff --git a/config/install-latest-testing.yaml b/config/install-latest-testing.yaml index baae2cba12..264af4f4d3 100644 --- a/config/install-latest-testing.yaml +++ b/config/install-latest-testing.yaml @@ -28218,12 +28218,12 @@ spec: - GET - POST type: string - refreshIntervalSeconds: - default: 0 - description: RefreshIntervalSeconds defines the interval at which - to poll the APICall - format: int64 - type: integer + refreshInterval: + default: 10m + description: RefreshInterval defines the interval in duration + at which to poll the APICall + format: duration + type: string service: description: Service is an API call to a JSON web service properties: diff --git a/docs/user/crd/index.html b/docs/user/crd/index.html index 431d63bff6..e1d15fee07 100644 --- a/docs/user/crd/index.html +++ b/docs/user/crd/index.html @@ -8011,13 +8011,15 @@ APICall
refreshIntervalSeconds
refreshInterval
RefreshIntervalSeconds defines the interval at which to poll the APICall
+RefreshInterval defines the interval in duration at which to poll the APICall