From 6e1def1004fd063538efbfae6d057053adc78b32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Wed, 19 Jun 2024 10:08:15 +0200 Subject: [PATCH] feat: remove v1alpha2 group/version (#10500) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: remove v1alpha2 group Signed-off-by: Charles-Edouard Brétéché * codegen Signed-off-by: Charles-Edouard Brétéché * fix tests Signed-off-by: Charles-Edouard Brétéché --------- Signed-off-by: Charles-Edouard Brétéché --- Makefile | 2 +- .../v1alpha2/admission_report_types.go | 95 -- .../v1alpha2/background_scan_report_types.go | 97 -- api/kyverno/v1alpha2/doc.go | 21 - api/kyverno/v1alpha2/zz_generated.deepcopy.go | 267 ---- api/kyverno/v1alpha2/zz_generated.defaults.go | 33 - api/kyverno/v1alpha2/zz_generated.register.go | 73 - .../v1alpha2 => reports/v1}/interface.go | 2 +- .../kyverno.io_admissionreports.yaml | 324 +---- .../kyverno.io_backgroundscanreports.yaml | 283 +--- .../kyverno.io_clusteradmissionreports.yaml | 325 +---- ...verno.io_clusterbackgroundscanreports.yaml | 283 +--- .../kyverno/kyverno.io_admissionreports.yaml | 324 +---- .../kyverno.io_backgroundscanreports.yaml | 283 +--- .../kyverno.io_clusteradmissionreports.yaml | 325 +---- ...verno.io_clusterbackgroundscanreports.yaml | 283 +--- config/install-latest-testing.yaml | 1215 +---------------- docs/user/crd/index.html | 422 +----- docs/user/crd/kyverno.v1alpha2.html | 771 ----------- .../kyverno/v1alpha2/admissionreport.go | 211 --- .../kyverno/v1alpha2/backgroundscanreport.go | 211 --- .../v1alpha2/clusteradmissionreport.go | 210 --- .../v1alpha2/clusterbackgroundscanreport.go | 210 --- pkg/client/applyconfigurations/utils.go | 32 +- pkg/client/clientset/versioned/clientset.go | 13 - .../versioned/fake/clientset_generated.go | 7 - .../clientset/versioned/fake/register.go | 2 - .../clientset/versioned/scheme/register.go | 2 - .../typed/kyverno/v1alpha2/admissionreport.go | 178 --- .../kyverno/v1alpha2/backgroundscanreport.go | 178 --- .../v1alpha2/clusteradmissionreport.go | 168 --- .../v1alpha2/clusterbackgroundscanreport.go | 168 --- .../versioned/typed/kyverno/v1alpha2/doc.go | 20 - .../typed/kyverno/v1alpha2/fake/doc.go | 20 - .../v1alpha2/fake/fake_admissionreport.go | 129 -- .../fake/fake_backgroundscanreport.go | 129 -- .../fake/fake_clusteradmissionreport.go | 121 -- .../fake/fake_clusterbackgroundscanreport.go | 121 -- .../v1alpha2/fake/fake_kyverno_client.go | 52 - .../kyverno/v1alpha2/generated_expansion.go | 27 - .../typed/kyverno/v1alpha2/kyverno_client.go | 122 -- .../informers/externalversions/generic.go | 17 +- .../externalversions/kyverno/interface.go | 8 - .../kyverno/v1alpha2/admissionreport.go | 90 -- .../kyverno/v1alpha2/backgroundscanreport.go | 90 -- .../v1alpha2/clusteradmissionreport.go | 89 -- .../v1alpha2/clusterbackgroundscanreport.go | 89 -- .../kyverno/v1alpha2/interface.go | 66 - .../kyverno/v1alpha2/admissionreport.go | 99 -- .../kyverno/v1alpha2/backgroundscanreport.go | 99 -- .../v1alpha2/clusteradmissionreport.go | 68 - .../v1alpha2/clusterbackgroundscanreport.go | 68 - .../kyverno/v1alpha2/expansion_generated.go | 43 - pkg/clients/kyverno/clientset.generated.go | 9 - .../admissionreports/resource.generated.go | 337 ----- .../resource.generated.go | 337 ----- .../kyvernov1alpha2/client.generated.go | 92 -- .../resource.generated.go | 337 ----- .../resource.generated.go | 337 ----- .../report/aggregate/controller.go | 11 +- pkg/controllers/report/aggregate/utils.go | 8 +- .../report/background/controller.go | 5 +- pkg/controllers/report/utils/utils.go | 4 +- pkg/utils/report/copy.go | 11 +- pkg/utils/report/create.go | 15 +- pkg/utils/report/delete.go | 11 +- pkg/utils/report/metadata.go | 18 +- pkg/utils/report/new.go | 15 +- pkg/utils/report/results.go | 6 +- pkg/utils/report/update.go | 15 +- .../no-admission-report/admission-report.yaml | 4 +- .../no-admission-report/admission-report.yaml | 4 +- 72 files changed, 72 insertions(+), 10089 deletions(-) delete mode 100644 api/kyverno/v1alpha2/admission_report_types.go delete mode 100644 api/kyverno/v1alpha2/background_scan_report_types.go delete mode 100644 api/kyverno/v1alpha2/doc.go delete mode 100644 api/kyverno/v1alpha2/zz_generated.deepcopy.go delete mode 100644 api/kyverno/v1alpha2/zz_generated.defaults.go delete mode 100644 api/kyverno/v1alpha2/zz_generated.register.go rename api/{kyverno/v1alpha2 => reports/v1}/interface.go (98%) delete mode 100644 docs/user/crd/kyverno.v1alpha2.html delete mode 100644 pkg/client/applyconfigurations/kyverno/v1alpha2/admissionreport.go delete mode 100644 pkg/client/applyconfigurations/kyverno/v1alpha2/backgroundscanreport.go delete mode 100644 pkg/client/applyconfigurations/kyverno/v1alpha2/clusteradmissionreport.go delete mode 100644 pkg/client/applyconfigurations/kyverno/v1alpha2/clusterbackgroundscanreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/admissionreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/backgroundscanreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusteradmissionreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusterbackgroundscanreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/doc.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/doc.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_admissionreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_backgroundscanreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusteradmissionreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusterbackgroundscanreport.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_kyverno_client.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/generated_expansion.go delete mode 100644 pkg/client/clientset/versioned/typed/kyverno/v1alpha2/kyverno_client.go delete mode 100644 pkg/client/informers/externalversions/kyverno/v1alpha2/admissionreport.go delete mode 100644 pkg/client/informers/externalversions/kyverno/v1alpha2/backgroundscanreport.go delete mode 100644 pkg/client/informers/externalversions/kyverno/v1alpha2/clusteradmissionreport.go delete mode 100644 pkg/client/informers/externalversions/kyverno/v1alpha2/clusterbackgroundscanreport.go delete mode 100644 pkg/client/informers/externalversions/kyverno/v1alpha2/interface.go delete mode 100644 pkg/client/listers/kyverno/v1alpha2/admissionreport.go delete mode 100644 pkg/client/listers/kyverno/v1alpha2/backgroundscanreport.go delete mode 100644 pkg/client/listers/kyverno/v1alpha2/clusteradmissionreport.go delete mode 100644 pkg/client/listers/kyverno/v1alpha2/clusterbackgroundscanreport.go delete mode 100644 pkg/client/listers/kyverno/v1alpha2/expansion_generated.go delete mode 100644 pkg/clients/kyverno/kyvernov1alpha2/admissionreports/resource.generated.go delete mode 100644 pkg/clients/kyverno/kyvernov1alpha2/backgroundscanreports/resource.generated.go delete mode 100644 pkg/clients/kyverno/kyvernov1alpha2/client.generated.go delete mode 100644 pkg/clients/kyverno/kyvernov1alpha2/clusteradmissionreports/resource.generated.go delete mode 100644 pkg/clients/kyverno/kyvernov1alpha2/clusterbackgroundscanreports/resource.generated.go diff --git a/Makefile b/Makefile index be6fbfc168..d494d2bbf8 100644 --- a/Makefile +++ b/Makefile @@ -402,7 +402,7 @@ image-build-all: $(BUILD_WITH)-build-all GOPATH_SHIM := ${PWD}/.gopath PACKAGE_SHIM := $(GOPATH_SHIM)/src/$(PACKAGE) OUT_PACKAGE := $(PACKAGE)/pkg/client -INPUT_DIRS := $(PACKAGE)/api/kyverno/v1,$(PACKAGE)/api/kyverno/v1alpha2,$(PACKAGE)/api/kyverno/v1beta1,$(PACKAGE)/api/kyverno/v2,$(PACKAGE)/api/kyverno/v2beta1,$(PACKAGE)/api/kyverno/v2alpha1,$(PACKAGE)/api/reports/v1,$(PACKAGE)/api/policyreport/v1alpha2 +INPUT_DIRS := $(PACKAGE)/api/kyverno/v1,$(PACKAGE)/api/kyverno/v1beta1,$(PACKAGE)/api/kyverno/v2,$(PACKAGE)/api/kyverno/v2beta1,$(PACKAGE)/api/kyverno/v2alpha1,$(PACKAGE)/api/reports/v1,$(PACKAGE)/api/policyreport/v1alpha2 CLIENTSET_PACKAGE := $(OUT_PACKAGE)/clientset LISTERS_PACKAGE := $(OUT_PACKAGE)/listers INFORMERS_PACKAGE := $(OUT_PACKAGE)/informers diff --git a/api/kyverno/v1alpha2/admission_report_types.go b/api/kyverno/v1alpha2/admission_report_types.go deleted file mode 100644 index 555bd8323f..0000000000 --- a/api/kyverno/v1alpha2/admission_report_types.go +++ /dev/null @@ -1,95 +0,0 @@ -/* -Copyright 2020 The Kubernetes authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package v1alpha2 - -import ( - kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2" - policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" -) - -// +genclient -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +kubebuilder:object:root=true -// +kubebuilder:storageversion -// +kubebuilder:resource:shortName=admr,categories=kyverno -// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" -// +kubebuilder:printcolumn:name="PASS",type=integer,JSONPath=".spec.summary.pass" -// +kubebuilder:printcolumn:name="FAIL",type=integer,JSONPath=".spec.summary.fail" -// +kubebuilder:printcolumn:name="WARN",type=integer,JSONPath=".spec.summary.warn" -// +kubebuilder:printcolumn:name="ERROR",type=integer,JSONPath=".spec.summary.error" -// +kubebuilder:printcolumn:name="SKIP",type=integer,JSONPath=".spec.summary.skip" -// +kubebuilder:printcolumn:name="GVR",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/resource\\.gvr']" -// +kubebuilder:printcolumn:name="REF",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/resource\\.name']" -// +kubebuilder:printcolumn:name="AGGREGATE",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/report\\.aggregate']",priority=1 - -// AdmissionReport is the Schema for the AdmissionReports API -type AdmissionReport kyvernov2.AdmissionReport - -func (r *AdmissionReport) GetResults() []policyreportv1alpha2.PolicyReportResult { - return r.Spec.Results -} - -func (r *AdmissionReport) SetResults(results []policyreportv1alpha2.PolicyReportResult) { - r.Spec.Results = results -} - -func (r *AdmissionReport) SetSummary(summary policyreportv1alpha2.PolicyReportSummary) { - r.Spec.Summary = summary -} - -// +genclient -// +genclient:nonNamespaced -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +kubebuilder:object:root=true -// +kubebuilder:storageversion -// +kubebuilder:resource:scope=Cluster,shortName=cadmr,categories=kyverno -// +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" -// +kubebuilder:printcolumn:name="PASS",type=integer,JSONPath=".spec.summary.pass" -// +kubebuilder:printcolumn:name="FAIL",type=integer,JSONPath=".spec.summary.fail" -// +kubebuilder:printcolumn:name="WARN",type=integer,JSONPath=".spec.summary.warn" -// +kubebuilder:printcolumn:name="ERROR",type=integer,JSONPath=".spec.summary.error" -// +kubebuilder:printcolumn:name="SKIP",type=integer,JSONPath=".spec.summary.skip" -// +kubebuilder:printcolumn:name="GVR",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/resource\\.gvr']" -// +kubebuilder:printcolumn:name="REF",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/resource\\.name']" -// +kubebuilder:printcolumn:name="AGGREGATE",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/report\\.aggregate']",priority=1 - -// ClusterAdmissionReport is the Schema for the ClusterAdmissionReports API -type ClusterAdmissionReport kyvernov2.ClusterAdmissionReport - -func (r *ClusterAdmissionReport) GetResults() []policyreportv1alpha2.PolicyReportResult { - return r.Spec.Results -} - -func (r *ClusterAdmissionReport) SetResults(results []policyreportv1alpha2.PolicyReportResult) { - r.Spec.Results = results -} - -func (r *ClusterAdmissionReport) SetSummary(summary policyreportv1alpha2.PolicyReportSummary) { - r.Spec.Summary = summary -} - -// +kubebuilder:object:root=true -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - -// AdmissionReportList contains a list of AdmissionReport -type AdmissionReportList kyvernov2.AdmissionReportList - -// +kubebuilder:object:root=true -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - -// ClusterAdmissionReportList contains a list of ClusterAdmissionReport -type ClusterAdmissionReportList kyvernov2.ClusterAdmissionReportList diff --git a/api/kyverno/v1alpha2/background_scan_report_types.go b/api/kyverno/v1alpha2/background_scan_report_types.go deleted file mode 100644 index a90bc1d886..0000000000 --- a/api/kyverno/v1alpha2/background_scan_report_types.go +++ /dev/null @@ -1,97 +0,0 @@ -/* -Copyright 2020 The Kubernetes authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package v1alpha2 - -import ( - kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2" - policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" -) - -// +genclient -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +kubebuilder:object:root=true -// +kubebuilder:storageversion -// +kubebuilder:resource:shortName=bgscanr,categories=kyverno -// +kubebuilder:printcolumn:name="ApiVersion",type=string,JSONPath=".metadata.ownerReferences[0].apiVersion" -// +kubebuilder:printcolumn:name="Kind",type=string,JSONPath=".metadata.ownerReferences[0].kind" -// +kubebuilder:printcolumn:name="Subject",type=string,JSONPath=".metadata.ownerReferences[0].name" -// +kubebuilder:printcolumn:name="Pass",type=integer,JSONPath=".spec.summary.pass" -// +kubebuilder:printcolumn:name="Fail",type=integer,JSONPath=".spec.summary.fail" -// +kubebuilder:printcolumn:name="Warn",type=integer,JSONPath=".spec.summary.warn" -// +kubebuilder:printcolumn:name="Error",type=integer,JSONPath=".spec.summary.error" -// +kubebuilder:printcolumn:name="Skip",type=integer,JSONPath=".spec.summary.skip" -// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp" -// +kubebuilder:printcolumn:name="Hash",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/resource\\.hash']",priority=1 - -// BackgroundScanReport is the Schema for the BackgroundScanReports API -type BackgroundScanReport kyvernov2.BackgroundScanReport - -func (r *BackgroundScanReport) GetResults() []policyreportv1alpha2.PolicyReportResult { - return r.Spec.Results -} - -func (r *BackgroundScanReport) SetResults(results []policyreportv1alpha2.PolicyReportResult) { - r.Spec.Results = results -} - -func (r *BackgroundScanReport) SetSummary(summary policyreportv1alpha2.PolicyReportSummary) { - r.Spec.Summary = summary -} - -// +genclient -// +genclient:nonNamespaced -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object -// +kubebuilder:object:root=true -// +kubebuilder:storageversion -// +kubebuilder:resource:scope=Cluster,shortName=cbgscanr,categories=kyverno -// +kubebuilder:printcolumn:name="ApiVersion",type=string,JSONPath=".metadata.ownerReferences[0].apiVersion" -// +kubebuilder:printcolumn:name="Kind",type=string,JSONPath=".metadata.ownerReferences[0].kind" -// +kubebuilder:printcolumn:name="Subject",type=string,JSONPath=".metadata.ownerReferences[0].name" -// +kubebuilder:printcolumn:name="Pass",type=integer,JSONPath=".spec.summary.pass" -// +kubebuilder:printcolumn:name="Fail",type=integer,JSONPath=".spec.summary.fail" -// +kubebuilder:printcolumn:name="Warn",type=integer,JSONPath=".spec.summary.warn" -// +kubebuilder:printcolumn:name="Error",type=integer,JSONPath=".spec.summary.error" -// +kubebuilder:printcolumn:name="Skip",type=integer,JSONPath=".spec.summary.skip" -// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp" -// +kubebuilder:printcolumn:name="Hash",type=string,JSONPath=".metadata.labels['audit\\.kyverno\\.io/resource\\.hash']",priority=1 - -// ClusterBackgroundScanReport is the Schema for the ClusterBackgroundScanReports API -type ClusterBackgroundScanReport kyvernov2.ClusterBackgroundScanReport - -func (r *ClusterBackgroundScanReport) GetResults() []policyreportv1alpha2.PolicyReportResult { - return r.Spec.Results -} - -func (r *ClusterBackgroundScanReport) SetResults(results []policyreportv1alpha2.PolicyReportResult) { - r.Spec.Results = results -} - -func (r *ClusterBackgroundScanReport) SetSummary(summary policyreportv1alpha2.PolicyReportSummary) { - r.Spec.Summary = summary -} - -// +kubebuilder:object:root=true -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - -// BackgroundScanReportList contains a list of BackgroundScanReport -type BackgroundScanReportList kyvernov2.BackgroundScanReportList - -// +kubebuilder:object:root=true -// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - -// ClusterBackgroundScanReportList contains a list of ClusterBackgroundScanReport -type ClusterBackgroundScanReportList kyvernov2.ClusterBackgroundScanReportList diff --git a/api/kyverno/v1alpha2/doc.go b/api/kyverno/v1alpha2/doc.go deleted file mode 100644 index 598479fc95..0000000000 --- a/api/kyverno/v1alpha2/doc.go +++ /dev/null @@ -1,21 +0,0 @@ -/* -Copyright 2020 The Kubernetes authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Package v1alpha2 contains API Schema definitions for the policy v1alpha2 API group -// +k8s:deepcopy-gen=package -// +kubebuilder:object:generate=true -// +groupName=kyverno.io -package v1alpha2 diff --git a/api/kyverno/v1alpha2/zz_generated.deepcopy.go b/api/kyverno/v1alpha2/zz_generated.deepcopy.go deleted file mode 100644 index c33c012a64..0000000000 --- a/api/kyverno/v1alpha2/zz_generated.deepcopy.go +++ /dev/null @@ -1,267 +0,0 @@ -//go:build !ignore_autogenerated -// +build !ignore_autogenerated - -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by deepcopy-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v2 "github.com/kyverno/kyverno/api/kyverno/v2" - runtime "k8s.io/apimachinery/pkg/runtime" -) - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *AdmissionReport) DeepCopyInto(out *AdmissionReport) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - in.Spec.DeepCopyInto(&out.Spec) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdmissionReport. -func (in *AdmissionReport) DeepCopy() *AdmissionReport { - if in == nil { - return nil - } - out := new(AdmissionReport) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *AdmissionReport) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *AdmissionReportList) DeepCopyInto(out *AdmissionReportList) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ListMeta.DeepCopyInto(&out.ListMeta) - if in.Items != nil { - in, out := &in.Items, &out.Items - *out = make([]v2.AdmissionReport, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdmissionReportList. -func (in *AdmissionReportList) DeepCopy() *AdmissionReportList { - if in == nil { - return nil - } - out := new(AdmissionReportList) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *AdmissionReportList) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *BackgroundScanReport) DeepCopyInto(out *BackgroundScanReport) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - in.Spec.DeepCopyInto(&out.Spec) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackgroundScanReport. -func (in *BackgroundScanReport) DeepCopy() *BackgroundScanReport { - if in == nil { - return nil - } - out := new(BackgroundScanReport) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *BackgroundScanReport) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *BackgroundScanReportList) DeepCopyInto(out *BackgroundScanReportList) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ListMeta.DeepCopyInto(&out.ListMeta) - if in.Items != nil { - in, out := &in.Items, &out.Items - *out = make([]v2.BackgroundScanReport, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackgroundScanReportList. -func (in *BackgroundScanReportList) DeepCopy() *BackgroundScanReportList { - if in == nil { - return nil - } - out := new(BackgroundScanReportList) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *BackgroundScanReportList) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ClusterAdmissionReport) DeepCopyInto(out *ClusterAdmissionReport) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - in.Spec.DeepCopyInto(&out.Spec) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAdmissionReport. -func (in *ClusterAdmissionReport) DeepCopy() *ClusterAdmissionReport { - if in == nil { - return nil - } - out := new(ClusterAdmissionReport) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *ClusterAdmissionReport) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ClusterAdmissionReportList) DeepCopyInto(out *ClusterAdmissionReportList) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ListMeta.DeepCopyInto(&out.ListMeta) - if in.Items != nil { - in, out := &in.Items, &out.Items - *out = make([]v2.ClusterAdmissionReport, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAdmissionReportList. -func (in *ClusterAdmissionReportList) DeepCopy() *ClusterAdmissionReportList { - if in == nil { - return nil - } - out := new(ClusterAdmissionReportList) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *ClusterAdmissionReportList) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ClusterBackgroundScanReport) DeepCopyInto(out *ClusterBackgroundScanReport) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - in.Spec.DeepCopyInto(&out.Spec) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBackgroundScanReport. -func (in *ClusterBackgroundScanReport) DeepCopy() *ClusterBackgroundScanReport { - if in == nil { - return nil - } - out := new(ClusterBackgroundScanReport) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *ClusterBackgroundScanReport) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ClusterBackgroundScanReportList) DeepCopyInto(out *ClusterBackgroundScanReportList) { - *out = *in - out.TypeMeta = in.TypeMeta - in.ListMeta.DeepCopyInto(&out.ListMeta) - if in.Items != nil { - in, out := &in.Items, &out.Items - *out = make([]v2.ClusterBackgroundScanReport, len(*in)) - for i := range *in { - (*in)[i].DeepCopyInto(&(*out)[i]) - } - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBackgroundScanReportList. -func (in *ClusterBackgroundScanReportList) DeepCopy() *ClusterBackgroundScanReportList { - if in == nil { - return nil - } - out := new(ClusterBackgroundScanReportList) - in.DeepCopyInto(out) - return out -} - -// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (in *ClusterBackgroundScanReportList) DeepCopyObject() runtime.Object { - if c := in.DeepCopy(); c != nil { - return c - } - return nil -} diff --git a/api/kyverno/v1alpha2/zz_generated.defaults.go b/api/kyverno/v1alpha2/zz_generated.defaults.go deleted file mode 100644 index 7e0a05edc9..0000000000 --- a/api/kyverno/v1alpha2/zz_generated.defaults.go +++ /dev/null @@ -1,33 +0,0 @@ -//go:build !ignore_autogenerated -// +build !ignore_autogenerated - -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by defaulter-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - runtime "k8s.io/apimachinery/pkg/runtime" -) - -// RegisterDefaults adds defaulters functions to the given scheme. -// Public to allow building arbitrary schemes. -// All generated defaulters are covering - they call all nested defaulters. -func RegisterDefaults(scheme *runtime.Scheme) error { - return nil -} diff --git a/api/kyverno/v1alpha2/zz_generated.register.go b/api/kyverno/v1alpha2/zz_generated.register.go deleted file mode 100644 index 951f596e2f..0000000000 --- a/api/kyverno/v1alpha2/zz_generated.register.go +++ /dev/null @@ -1,73 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by register-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/runtime" - "k8s.io/apimachinery/pkg/runtime/schema" -) - -// GroupName specifies the group name used to register the objects. -const GroupName = "kyverno.io" - -// GroupVersion specifies the group and the version used to register the objects. -var GroupVersion = v1.GroupVersion{Group: GroupName, Version: "v1alpha2"} - -// SchemeGroupVersion is group version used to register these objects -// Deprecated: use GroupVersion instead. -var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1alpha2"} - -// Resource takes an unqualified resource and returns a Group qualified GroupResource -func Resource(resource string) schema.GroupResource { - return SchemeGroupVersion.WithResource(resource).GroupResource() -} - -var ( - // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. - SchemeBuilder runtime.SchemeBuilder - localSchemeBuilder = &SchemeBuilder - // Depreciated: use Install instead - AddToScheme = localSchemeBuilder.AddToScheme - Install = localSchemeBuilder.AddToScheme -) - -func init() { - // We only register manually written functions here. The registration of the - // generated functions takes place in the generated files. The separation - // makes the code compile even when the generated files are missing. - localSchemeBuilder.Register(addKnownTypes) -} - -// Adds the list of known types to Scheme. -func addKnownTypes(scheme *runtime.Scheme) error { - scheme.AddKnownTypes(SchemeGroupVersion, - &AdmissionReport{}, - &AdmissionReportList{}, - &BackgroundScanReport{}, - &BackgroundScanReportList{}, - &ClusterAdmissionReport{}, - &ClusterAdmissionReportList{}, - &ClusterBackgroundScanReport{}, - &ClusterBackgroundScanReportList{}, - ) - // AddToGroupVersion allows the serialization of client types like ListOptions. - v1.AddToGroupVersion(scheme, SchemeGroupVersion) - return nil -} diff --git a/api/kyverno/v1alpha2/interface.go b/api/reports/v1/interface.go similarity index 98% rename from api/kyverno/v1alpha2/interface.go rename to api/reports/v1/interface.go index 772b217972..b9b33e8f20 100644 --- a/api/kyverno/v1alpha2/interface.go +++ b/api/reports/v1/interface.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package v1alpha2 +package v1 import ( policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_admissionreports.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_admissionreports.yaml index 58e097bbdd..8686ebdd18 100644 --- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_admissionreports.yaml +++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_admissionreports.yaml @@ -24,328 +24,6 @@ spec: singular: admissionreport scope: Namespaced versions: - - additionalPrinterColumns: - - jsonPath: .metadata.creationTimestamp - name: AGE - type: date - - jsonPath: .spec.summary.pass - name: PASS - type: integer - - jsonPath: .spec.summary.fail - name: FAIL - type: integer - - jsonPath: .spec.summary.warn - name: WARN - type: integer - - jsonPath: .spec.summary.error - name: ERROR - type: integer - - jsonPath: .spec.summary.skip - name: SKIP - type: integer - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.gvr'] - name: GVR - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.name'] - name: REF - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/report\.aggregate'] - name: AGGREGATE - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: AdmissionReport is the Schema for the AdmissionReports API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - owner: - description: Owner is a reference to the report owner (e.g. a Deployment, - Namespace, or Node) - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: |- - If true, AND if the owner has the "foregroundDeletion" finalizer, then - the owner cannot be deleted from the key-value store until this - reference is removed. - See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion - for how the garbage collector interacts with this field and enforces the foreground deletion. - Defaults to false. - To set this field, a user needs "delete" permission of the owner, - otherwise 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - x-kubernetes-map-type: atomic - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - required: - - owner - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.creationTimestamp name: AGE @@ -666,6 +344,6 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} {{- end }} diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_backgroundscanreports.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_backgroundscanreports.yaml index 13e75a97ba..375ce0711a 100644 --- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_backgroundscanreports.yaml +++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_backgroundscanreports.yaml @@ -24,287 +24,6 @@ spec: singular: backgroundscanreport scope: Namespaced versions: - - additionalPrinterColumns: - - jsonPath: .metadata.ownerReferences[0].apiVersion - name: ApiVersion - type: string - - jsonPath: .metadata.ownerReferences[0].kind - name: Kind - type: string - - jsonPath: .metadata.ownerReferences[0].name - name: Subject - type: string - - jsonPath: .spec.summary.pass - name: Pass - type: integer - - jsonPath: .spec.summary.fail - name: Fail - type: integer - - jsonPath: .spec.summary.warn - name: Warn - type: integer - - jsonPath: .spec.summary.error - name: Error - type: integer - - jsonPath: .spec.summary.skip - name: Skip - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.hash'] - name: Hash - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: BackgroundScanReport is the Schema for the BackgroundScanReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.ownerReferences[0].apiVersion name: ApiVersion @@ -584,6 +303,6 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} {{- end }} diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusteradmissionreports.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusteradmissionreports.yaml index f8dd1c5558..bc96a978d4 100644 --- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusteradmissionreports.yaml +++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusteradmissionreports.yaml @@ -24,329 +24,6 @@ spec: singular: clusteradmissionreport scope: Cluster versions: - - additionalPrinterColumns: - - jsonPath: .metadata.creationTimestamp - name: AGE - type: date - - jsonPath: .spec.summary.pass - name: PASS - type: integer - - jsonPath: .spec.summary.fail - name: FAIL - type: integer - - jsonPath: .spec.summary.warn - name: WARN - type: integer - - jsonPath: .spec.summary.error - name: ERROR - type: integer - - jsonPath: .spec.summary.skip - name: SKIP - type: integer - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.gvr'] - name: GVR - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.name'] - name: REF - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/report\.aggregate'] - name: AGGREGATE - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: ClusterAdmissionReport is the Schema for the ClusterAdmissionReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - owner: - description: Owner is a reference to the report owner (e.g. a Deployment, - Namespace, or Node) - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: |- - If true, AND if the owner has the "foregroundDeletion" finalizer, then - the owner cannot be deleted from the key-value store until this - reference is removed. - See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion - for how the garbage collector interacts with this field and enforces the foreground deletion. - Defaults to false. - To set this field, a user needs "delete" permission of the owner, - otherwise 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - x-kubernetes-map-type: atomic - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - required: - - owner - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.creationTimestamp name: AGE @@ -668,6 +345,6 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} {{- end }} diff --git a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterbackgroundscanreports.yaml b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterbackgroundscanreports.yaml index 8398a474cf..aead870373 100644 --- a/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterbackgroundscanreports.yaml +++ b/charts/kyverno/charts/crds/templates/kyverno.io/kyverno.io_clusterbackgroundscanreports.yaml @@ -24,287 +24,6 @@ spec: singular: clusterbackgroundscanreport scope: Cluster versions: - - additionalPrinterColumns: - - jsonPath: .metadata.ownerReferences[0].apiVersion - name: ApiVersion - type: string - - jsonPath: .metadata.ownerReferences[0].kind - name: Kind - type: string - - jsonPath: .metadata.ownerReferences[0].name - name: Subject - type: string - - jsonPath: .spec.summary.pass - name: Pass - type: integer - - jsonPath: .spec.summary.fail - name: Fail - type: integer - - jsonPath: .spec.summary.warn - name: Warn - type: integer - - jsonPath: .spec.summary.error - name: Error - type: integer - - jsonPath: .spec.summary.skip - name: Skip - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.hash'] - name: Hash - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: ClusterBackgroundScanReport is the Schema for the ClusterBackgroundScanReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.ownerReferences[0].apiVersion name: ApiVersion @@ -584,6 +303,6 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} {{- end }} diff --git a/config/crds/kyverno/kyverno.io_admissionreports.yaml b/config/crds/kyverno/kyverno.io_admissionreports.yaml index 05b83e2a03..90446780f9 100644 --- a/config/crds/kyverno/kyverno.io_admissionreports.yaml +++ b/config/crds/kyverno/kyverno.io_admissionreports.yaml @@ -18,328 +18,6 @@ spec: singular: admissionreport scope: Namespaced versions: - - additionalPrinterColumns: - - jsonPath: .metadata.creationTimestamp - name: AGE - type: date - - jsonPath: .spec.summary.pass - name: PASS - type: integer - - jsonPath: .spec.summary.fail - name: FAIL - type: integer - - jsonPath: .spec.summary.warn - name: WARN - type: integer - - jsonPath: .spec.summary.error - name: ERROR - type: integer - - jsonPath: .spec.summary.skip - name: SKIP - type: integer - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.gvr'] - name: GVR - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.name'] - name: REF - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/report\.aggregate'] - name: AGGREGATE - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: AdmissionReport is the Schema for the AdmissionReports API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - owner: - description: Owner is a reference to the report owner (e.g. a Deployment, - Namespace, or Node) - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: |- - If true, AND if the owner has the "foregroundDeletion" finalizer, then - the owner cannot be deleted from the key-value store until this - reference is removed. - See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion - for how the garbage collector interacts with this field and enforces the foreground deletion. - Defaults to false. - To set this field, a user needs "delete" permission of the owner, - otherwise 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - x-kubernetes-map-type: atomic - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - required: - - owner - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.creationTimestamp name: AGE @@ -660,5 +338,5 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} diff --git a/config/crds/kyverno/kyverno.io_backgroundscanreports.yaml b/config/crds/kyverno/kyverno.io_backgroundscanreports.yaml index 059b294a99..d47ad3fe72 100644 --- a/config/crds/kyverno/kyverno.io_backgroundscanreports.yaml +++ b/config/crds/kyverno/kyverno.io_backgroundscanreports.yaml @@ -18,287 +18,6 @@ spec: singular: backgroundscanreport scope: Namespaced versions: - - additionalPrinterColumns: - - jsonPath: .metadata.ownerReferences[0].apiVersion - name: ApiVersion - type: string - - jsonPath: .metadata.ownerReferences[0].kind - name: Kind - type: string - - jsonPath: .metadata.ownerReferences[0].name - name: Subject - type: string - - jsonPath: .spec.summary.pass - name: Pass - type: integer - - jsonPath: .spec.summary.fail - name: Fail - type: integer - - jsonPath: .spec.summary.warn - name: Warn - type: integer - - jsonPath: .spec.summary.error - name: Error - type: integer - - jsonPath: .spec.summary.skip - name: Skip - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.hash'] - name: Hash - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: BackgroundScanReport is the Schema for the BackgroundScanReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.ownerReferences[0].apiVersion name: ApiVersion @@ -578,5 +297,5 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} diff --git a/config/crds/kyverno/kyverno.io_clusteradmissionreports.yaml b/config/crds/kyverno/kyverno.io_clusteradmissionreports.yaml index 6b102f54dc..227dc4545e 100644 --- a/config/crds/kyverno/kyverno.io_clusteradmissionreports.yaml +++ b/config/crds/kyverno/kyverno.io_clusteradmissionreports.yaml @@ -18,329 +18,6 @@ spec: singular: clusteradmissionreport scope: Cluster versions: - - additionalPrinterColumns: - - jsonPath: .metadata.creationTimestamp - name: AGE - type: date - - jsonPath: .spec.summary.pass - name: PASS - type: integer - - jsonPath: .spec.summary.fail - name: FAIL - type: integer - - jsonPath: .spec.summary.warn - name: WARN - type: integer - - jsonPath: .spec.summary.error - name: ERROR - type: integer - - jsonPath: .spec.summary.skip - name: SKIP - type: integer - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.gvr'] - name: GVR - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.name'] - name: REF - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/report\.aggregate'] - name: AGGREGATE - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: ClusterAdmissionReport is the Schema for the ClusterAdmissionReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - owner: - description: Owner is a reference to the report owner (e.g. a Deployment, - Namespace, or Node) - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: |- - If true, AND if the owner has the "foregroundDeletion" finalizer, then - the owner cannot be deleted from the key-value store until this - reference is removed. - See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion - for how the garbage collector interacts with this field and enforces the foreground deletion. - Defaults to false. - To set this field, a user needs "delete" permission of the owner, - otherwise 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - x-kubernetes-map-type: atomic - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - required: - - owner - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.creationTimestamp name: AGE @@ -662,5 +339,5 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} diff --git a/config/crds/kyverno/kyverno.io_clusterbackgroundscanreports.yaml b/config/crds/kyverno/kyverno.io_clusterbackgroundscanreports.yaml index cc00b53923..ec8814352b 100644 --- a/config/crds/kyverno/kyverno.io_clusterbackgroundscanreports.yaml +++ b/config/crds/kyverno/kyverno.io_clusterbackgroundscanreports.yaml @@ -18,287 +18,6 @@ spec: singular: clusterbackgroundscanreport scope: Cluster versions: - - additionalPrinterColumns: - - jsonPath: .metadata.ownerReferences[0].apiVersion - name: ApiVersion - type: string - - jsonPath: .metadata.ownerReferences[0].kind - name: Kind - type: string - - jsonPath: .metadata.ownerReferences[0].name - name: Subject - type: string - - jsonPath: .spec.summary.pass - name: Pass - type: integer - - jsonPath: .spec.summary.fail - name: Fail - type: integer - - jsonPath: .spec.summary.warn - name: Warn - type: integer - - jsonPath: .spec.summary.error - name: Error - type: integer - - jsonPath: .spec.summary.skip - name: Skip - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.hash'] - name: Hash - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: ClusterBackgroundScanReport is the Schema for the ClusterBackgroundScanReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.ownerReferences[0].apiVersion name: ApiVersion @@ -578,5 +297,5 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} diff --git a/config/install-latest-testing.yaml b/config/install-latest-testing.yaml index 246c5dfe95..61013f5840 100644 --- a/config/install-latest-testing.yaml +++ b/config/install-latest-testing.yaml @@ -233,328 +233,6 @@ spec: singular: admissionreport scope: Namespaced versions: - - additionalPrinterColumns: - - jsonPath: .metadata.creationTimestamp - name: AGE - type: date - - jsonPath: .spec.summary.pass - name: PASS - type: integer - - jsonPath: .spec.summary.fail - name: FAIL - type: integer - - jsonPath: .spec.summary.warn - name: WARN - type: integer - - jsonPath: .spec.summary.error - name: ERROR - type: integer - - jsonPath: .spec.summary.skip - name: SKIP - type: integer - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.gvr'] - name: GVR - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.name'] - name: REF - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/report\.aggregate'] - name: AGGREGATE - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: AdmissionReport is the Schema for the AdmissionReports API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - owner: - description: Owner is a reference to the report owner (e.g. a Deployment, - Namespace, or Node) - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: |- - If true, AND if the owner has the "foregroundDeletion" finalizer, then - the owner cannot be deleted from the key-value store until this - reference is removed. - See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion - for how the garbage collector interacts with this field and enforces the foreground deletion. - Defaults to false. - To set this field, a user needs "delete" permission of the owner, - otherwise 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - x-kubernetes-map-type: atomic - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - required: - - owner - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.creationTimestamp name: AGE @@ -875,7 +553,7 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} --- apiVersion: apiextensions.k8s.io/v1 @@ -904,287 +582,6 @@ spec: singular: backgroundscanreport scope: Namespaced versions: - - additionalPrinterColumns: - - jsonPath: .metadata.ownerReferences[0].apiVersion - name: ApiVersion - type: string - - jsonPath: .metadata.ownerReferences[0].kind - name: Kind - type: string - - jsonPath: .metadata.ownerReferences[0].name - name: Subject - type: string - - jsonPath: .spec.summary.pass - name: Pass - type: integer - - jsonPath: .spec.summary.fail - name: Fail - type: integer - - jsonPath: .spec.summary.warn - name: Warn - type: integer - - jsonPath: .spec.summary.error - name: Error - type: integer - - jsonPath: .spec.summary.skip - name: Skip - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.hash'] - name: Hash - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: BackgroundScanReport is the Schema for the BackgroundScanReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.ownerReferences[0].apiVersion name: ApiVersion @@ -1464,7 +861,7 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} --- apiVersion: apiextensions.k8s.io/v1 @@ -3993,329 +3390,6 @@ spec: singular: clusteradmissionreport scope: Cluster versions: - - additionalPrinterColumns: - - jsonPath: .metadata.creationTimestamp - name: AGE - type: date - - jsonPath: .spec.summary.pass - name: PASS - type: integer - - jsonPath: .spec.summary.fail - name: FAIL - type: integer - - jsonPath: .spec.summary.warn - name: WARN - type: integer - - jsonPath: .spec.summary.error - name: ERROR - type: integer - - jsonPath: .spec.summary.skip - name: SKIP - type: integer - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.gvr'] - name: GVR - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.name'] - name: REF - type: string - - jsonPath: .metadata.labels['audit\.kyverno\.io/report\.aggregate'] - name: AGGREGATE - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: ClusterAdmissionReport is the Schema for the ClusterAdmissionReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - owner: - description: Owner is a reference to the report owner (e.g. a Deployment, - Namespace, or Node) - properties: - apiVersion: - description: API version of the referent. - type: string - blockOwnerDeletion: - description: |- - If true, AND if the owner has the "foregroundDeletion" finalizer, then - the owner cannot be deleted from the key-value store until this - reference is removed. - See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion - for how the garbage collector interacts with this field and enforces the foreground deletion. - Defaults to false. - To set this field, a user needs "delete" permission of the owner, - otherwise 422 (Unprocessable Entity) will be returned. - type: boolean - controller: - description: If true, this reference points to the managing controller. - type: boolean - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids - type: string - required: - - apiVersion - - kind - - name - - uid - type: object - x-kubernetes-map-type: atomic - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - required: - - owner - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.creationTimestamp name: AGE @@ -4637,7 +3711,7 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} --- apiVersion: apiextensions.k8s.io/v1 @@ -4666,287 +3740,6 @@ spec: singular: clusterbackgroundscanreport scope: Cluster versions: - - additionalPrinterColumns: - - jsonPath: .metadata.ownerReferences[0].apiVersion - name: ApiVersion - type: string - - jsonPath: .metadata.ownerReferences[0].kind - name: Kind - type: string - - jsonPath: .metadata.ownerReferences[0].name - name: Subject - type: string - - jsonPath: .spec.summary.pass - name: Pass - type: integer - - jsonPath: .spec.summary.fail - name: Fail - type: integer - - jsonPath: .spec.summary.warn - name: Warn - type: integer - - jsonPath: .spec.summary.error - name: Error - type: integer - - jsonPath: .spec.summary.skip - name: Skip - type: integer - - jsonPath: .metadata.creationTimestamp - name: Age - type: date - - jsonPath: .metadata.labels['audit\.kyverno\.io/resource\.hash'] - name: Hash - priority: 1 - type: string - name: v1alpha2 - schema: - openAPIV3Schema: - description: ClusterBackgroundScanReport is the Schema for the ClusterBackgroundScanReports - API - properties: - apiVersion: - description: |- - APIVersion defines the versioned schema of this representation of an object. - Servers should convert recognized schemas to the latest internal value, and - may reject unrecognized values. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources - type: string - kind: - description: |- - Kind is a string value representing the REST resource this object represents. - Servers may infer this from the endpoint the client submits requests to. - Cannot be updated. - In CamelCase. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - metadata: - type: object - spec: - properties: - results: - description: PolicyReportResult provides result details - items: - description: PolicyReportResult provides the result for an individual - policy - properties: - category: - description: Category indicates policy category - type: string - message: - description: Description is a short user friendly message for - the policy rule - type: string - policy: - description: Policy is the name or identifier of the policy - type: string - properties: - additionalProperties: - type: string - description: Properties provides additional information for - the policy rule - type: object - resourceSelector: - description: |- - SubjectSelector is an optional label selector for checked Kubernetes resources. - For example, a policy result may apply to all pods that match a label. - Either a Subject or a SubjectSelector can be specified. - If neither are provided, the result is assumed to be for the policy report scope. - properties: - matchExpressions: - description: matchExpressions is a list of label selector - requirements. The requirements are ANDed. - items: - description: |- - A label selector requirement is a selector that contains values, a key, and an operator that - relates the key and values. - properties: - key: - description: key is the label key that the selector - applies to. - type: string - operator: - description: |- - operator represents a key's relationship to a set of values. - Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: |- - values is an array of string values. If the operator is In or NotIn, - the values array must be non-empty. If the operator is Exists or DoesNotExist, - the values array must be empty. This array is replaced during a strategic - merge patch. - items: - type: string - type: array - x-kubernetes-list-type: atomic - required: - - key - - operator - type: object - type: array - x-kubernetes-list-type: atomic - matchLabels: - additionalProperties: - type: string - description: |- - matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels - map is equivalent to an element of matchExpressions, whose key field is "key", the - operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - x-kubernetes-map-type: atomic - resources: - description: Subjects is an optional reference to the checked - Kubernetes resources - items: - description: |- - ObjectReference contains enough information to let you inspect or modify the referred object. - --- - New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs. - 1. Ignored fields. It includes many fields which are not generally honored. For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage. - 2. Invalid usage help. It is impossible to add specific help for individual usage. In most embedded usages, there are particular - restrictions like, "must refer only to types A and B" or "UID not honored" or "name must be restricted". - Those cannot be well described when embedded. - 3. Inconsistent validation. Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen. - 4. The fields are both imprecise and overly precise. Kind is not a precise mapping to a URL. This can produce ambiguity - during interpretation and require a REST mapping. In most cases, the dependency is on the group,resource tuple - and the version of the actual struct is irrelevant. - 5. We cannot easily change it. Because this type is embedded in many locations, updates to this type - will affect numerous schemas. Don't make new APIs embed an underspecified API type they do not control. - - - Instead of using this type, create a locally provided and used type that is well-focused on your reference. - For example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 . - properties: - apiVersion: - description: API version of the referent. - type: string - fieldPath: - description: |- - If referring to a piece of an object instead of an entire object, this string - should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. - For example, if the object reference is to a container within a pod, this would take on a value like: - "spec.containers{name}" (where "name" refers to the name of the container that triggered - the event) or if no container name is specified "spec.containers[2]" (container with - index 2 in this pod). This syntax is chosen only to have some well-defined way of - referencing a part of an object. - TODO: this design is not final and this field is subject to change in the future. - type: string - kind: - description: |- - Kind of the referent. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds - type: string - name: - description: |- - Name of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names - type: string - namespace: - description: |- - Namespace of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ - type: string - resourceVersion: - description: |- - Specific resourceVersion to which this reference is made, if any. - More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency - type: string - uid: - description: |- - UID of the referent. - More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids - type: string - type: object - x-kubernetes-map-type: atomic - type: array - result: - description: Result indicates the outcome of the policy rule - execution - enum: - - pass - - fail - - warn - - error - - skip - type: string - rule: - description: Rule is the name or identifier of the rule within - the policy - type: string - scored: - description: Scored indicates if this result is scored - type: boolean - severity: - description: Severity indicates policy check result criticality - enum: - - critical - - high - - low - - medium - - info - type: string - source: - description: Source is an identifier for the policy engine that - manages this report - type: string - timestamp: - description: Timestamp indicates the time the result was found - properties: - nanos: - description: |- - Non-negative fractions of a second at nanosecond resolution. Negative - second values with fractions must still have non-negative nanos values - that count forward in time. Must be from 0 to 999,999,999 - inclusive. This field may be limited in precision depending on context. - format: int32 - type: integer - seconds: - description: |- - Represents seconds of UTC time since Unix epoch - 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - 9999-12-31T23:59:59Z inclusive. - format: int64 - type: integer - required: - - nanos - - seconds - type: object - required: - - policy - type: object - type: array - summary: - description: PolicyReportSummary provides a summary of results - properties: - error: - description: Error provides the count of policies that could not - be evaluated - type: integer - fail: - description: Fail provides the count of policies whose requirements - were not met - type: integer - pass: - description: Pass provides the count of policies whose requirements - were met - type: integer - skip: - description: Skip indicates the count of policies that were not - selected for evaluation - type: integer - warn: - description: Warn provides the count of non-scored policies whose - requirements were not met - type: integer - type: object - type: object - required: - - spec - type: object - served: true - storage: true - subresources: {} - additionalPrinterColumns: - jsonPath: .metadata.ownerReferences[0].apiVersion name: ApiVersion @@ -5226,7 +4019,7 @@ spec: - spec type: object served: true - storage: false + storage: true subresources: {} --- apiVersion: apiextensions.k8s.io/v1 diff --git a/docs/user/crd/index.html b/docs/user/crd/index.html index 384284679d..504ca6b973 100644 --- a/docs/user/crd/index.html +++ b/docs/user/crd/index.html @@ -21,9 +21,6 @@ background-color: #1589dd; kyverno.io/v1
  • -kyverno.io/v1alpha2 -
  • -
  • kyverno.io/v1beta1
  • @@ -4665,416 +4662,6 @@ expression evaluates to nil


    -

    kyverno.io/v1alpha2

    -

    -

    Package v1alpha2 contains API Schema definitions for the policy v1alpha2 API group

    -

    -Resource Types: - -
    -

    AdmissionReport -

    -

    -

    AdmissionReport is the Schema for the AdmissionReports API

    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    -apiVersion
    -string
    - -kyverno.io/v1alpha2 - -
    -kind
    -string -
    AdmissionReport
    -metadata
    - - -Kubernetes meta/v1.ObjectMeta - - -
    -Refer to the Kubernetes API documentation for the fields of the -metadata field. -
    -spec
    - - -AdmissionReportSpec - - -
    -
    -
    - - - - - - - - - - - - - -
    -owner
    - - -Kubernetes meta/v1.OwnerReference - - -
    -

    Owner is a reference to the report owner (e.g. a Deployment, Namespace, or Node)

    -
    -summary
    - - -PolicyReportSummary - - -
    -(Optional) -

    PolicyReportSummary provides a summary of results

    -
    -results
    - - -[]PolicyReportResult - - -
    -(Optional) -

    PolicyReportResult provides result details

    -
    -
    -
    -

    BackgroundScanReport -

    -

    -

    BackgroundScanReport is the Schema for the BackgroundScanReports API

    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    -apiVersion
    -string
    - -kyverno.io/v1alpha2 - -
    -kind
    -string -
    BackgroundScanReport
    -metadata
    - - -Kubernetes meta/v1.ObjectMeta - - -
    -Refer to the Kubernetes API documentation for the fields of the -metadata field. -
    -spec
    - - -BackgroundScanReportSpec - - -
    -
    -
    - - - - - - - - - -
    -summary
    - - -PolicyReportSummary - - -
    -(Optional) -

    PolicyReportSummary provides a summary of results

    -
    -results
    - - -[]PolicyReportResult - - -
    -(Optional) -

    PolicyReportResult provides result details

    -
    -
    -
    -

    ClusterAdmissionReport -

    -

    -

    ClusterAdmissionReport is the Schema for the ClusterAdmissionReports API

    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    -apiVersion
    -string
    - -kyverno.io/v1alpha2 - -
    -kind
    -string -
    ClusterAdmissionReport
    -metadata
    - - -Kubernetes meta/v1.ObjectMeta - - -
    -Refer to the Kubernetes API documentation for the fields of the -metadata field. -
    -spec
    - - -AdmissionReportSpec - - -
    -
    -
    - - - - - - - - - - - - - -
    -owner
    - - -Kubernetes meta/v1.OwnerReference - - -
    -

    Owner is a reference to the report owner (e.g. a Deployment, Namespace, or Node)

    -
    -summary
    - - -PolicyReportSummary - - -
    -(Optional) -

    PolicyReportSummary provides a summary of results

    -
    -results
    - - -[]PolicyReportResult - - -
    -(Optional) -

    PolicyReportResult provides result details

    -
    -
    -
    -

    ClusterBackgroundScanReport -

    -

    -

    ClusterBackgroundScanReport is the Schema for the ClusterBackgroundScanReports API

    -

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    FieldDescription
    -apiVersion
    -string
    - -kyverno.io/v1alpha2 - -
    -kind
    -string -
    ClusterBackgroundScanReport
    -metadata
    - - -Kubernetes meta/v1.ObjectMeta - - -
    -Refer to the Kubernetes API documentation for the fields of the -metadata field. -
    -spec
    - - -BackgroundScanReportSpec - - -
    -
    -
    - - - - - - - - - -
    -summary
    - - -PolicyReportSummary - - -
    -(Optional) -

    PolicyReportSummary provides a summary of results

    -
    -results
    - - -[]PolicyReportResult - - -
    -(Optional) -

    PolicyReportResult provides result details

    -
    -
    -
    -

    ReportInterface -

    -

    -

    ReportInterface abstracts the concrete report change request type

    -

    kyverno.io/v1beta1

    Package v1beta1 contains API Schema definitions for the policy v1beta1 API group

    @@ -6606,8 +6193,6 @@ UpdateRequestStatus

    (Appears on: -AdmissionReport, -ClusterAdmissionReport, AdmissionReport, ClusterAdmissionReport)

    @@ -6768,8 +6353,6 @@ Here, all of the conditions need to pass.

    (Appears on: -BackgroundScanReport, -ClusterBackgroundScanReport, BackgroundScanReport, ClusterBackgroundScanReport)

    @@ -10535,6 +10118,11 @@ PolicyReportSummary
    +

    ReportInterface +

    +

    +

    ReportInterface abstracts the concrete report change request type

    +

    wgpolicyk8s.io/v1alpha2

    Resource Types:
    • diff --git a/docs/user/crd/kyverno.v1alpha2.html b/docs/user/crd/kyverno.v1alpha2.html deleted file mode 100644 index 4cc5e07dd8..0000000000 --- a/docs/user/crd/kyverno.v1alpha2.html +++ /dev/null @@ -1,771 +0,0 @@ - - - - - - - - - -
      - - - -

      Package: kyverno.io/v1alpha2

      -

      Package v1alpha2 contains API Schema definitions for the policy v1alpha2 API group

      -

      - - - - - -

      Resource Types:

      - - - - -

      AdmissionReport -

      - - - -

      AdmissionReport is the Schema for the AdmissionReports API

      -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      FieldDescription
      apiVersion
      string
      kyverno.io/v1alpha2
      kind
      string
      AdmissionReport
      metadata - - * - -
      - - - - - meta/v1.ObjectMeta - - -
      - - - - - - Refer to the Kubernetes API documentation for the fields of the - metadata field. - - - -
      spec - - * - -
      - - - - - github.com/kyverno/kyverno/api/kyverno/v2.AdmissionReportSpec - - -
      - - - - - - - -
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      owner - - * - -
      - - - - - meta/v1.OwnerReference - - -
      - - -

      Owner is a reference to the report owner (e.g. a Deployment, Namespace, or Node)

      - - - - - -
      summary - -
      - - - - - github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportSummary - - -
      - - -

      PolicyReportSummary provides a summary of results

      - - - - - -
      results - -
      - - - - - []github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportResult - - -
      - - -

      PolicyReportResult provides result details

      - - - - - -
      - -
      - - -

      BackgroundScanReport -

      - - - -

      BackgroundScanReport is the Schema for the BackgroundScanReports API

      -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      FieldDescription
      apiVersion
      string
      kyverno.io/v1alpha2
      kind
      string
      BackgroundScanReport
      metadata - - * - -
      - - - - - meta/v1.ObjectMeta - - -
      - - - - - - Refer to the Kubernetes API documentation for the fields of the - metadata field. - - - -
      spec - - * - -
      - - - - - github.com/kyverno/kyverno/api/kyverno/v2.BackgroundScanReportSpec - - -
      - - - - - - - -
      -
      - - - - - - - - - - - - - - - - - - - - - - -
      summary - -
      - - - - - github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportSummary - - -
      - - -

      PolicyReportSummary provides a summary of results

      - - - - - -
      results - -
      - - - - - []github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportResult - - -
      - - -

      PolicyReportResult provides result details

      - - - - - -
      - -
      - - -

      ClusterAdmissionReport -

      - - - -

      ClusterAdmissionReport is the Schema for the ClusterAdmissionReports API

      -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      FieldDescription
      apiVersion
      string
      kyverno.io/v1alpha2
      kind
      string
      ClusterAdmissionReport
      metadata - - * - -
      - - - - - meta/v1.ObjectMeta - - -
      - - - - - - Refer to the Kubernetes API documentation for the fields of the - metadata field. - - - -
      spec - - * - -
      - - - - - github.com/kyverno/kyverno/api/kyverno/v2.AdmissionReportSpec - - -
      - - - - - - - -
      -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      owner - - * - -
      - - - - - meta/v1.OwnerReference - - -
      - - -

      Owner is a reference to the report owner (e.g. a Deployment, Namespace, or Node)

      - - - - - -
      summary - -
      - - - - - github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportSummary - - -
      - - -

      PolicyReportSummary provides a summary of results

      - - - - - -
      results - -
      - - - - - []github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportResult - - -
      - - -

      PolicyReportResult provides result details

      - - - - - -
      - -
      - - -

      ClusterBackgroundScanReport -

      - - - -

      ClusterBackgroundScanReport is the Schema for the ClusterBackgroundScanReports API

      -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      FieldDescription
      apiVersion
      string
      kyverno.io/v1alpha2
      kind
      string
      ClusterBackgroundScanReport
      metadata - - * - -
      - - - - - meta/v1.ObjectMeta - - -
      - - - - - - Refer to the Kubernetes API documentation for the fields of the - metadata field. - - - -
      spec - - * - -
      - - - - - github.com/kyverno/kyverno/api/kyverno/v2.BackgroundScanReportSpec - - -
      - - - - - - - -
      -
      - - - - - - - - - - - - - - - - - - - - - - -
      summary - -
      - - - - - github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportSummary - - -
      - - -

      PolicyReportSummary provides a summary of results

      - - - - - -
      results - -
      - - - - - []github.com/kyverno/kyverno/api/policyreport/v1alpha2.PolicyReportResult - - -
      - - -

      PolicyReportResult provides result details

      - - - - - -
      - -
      - - - -
      - -
      - - diff --git a/pkg/client/applyconfigurations/kyverno/v1alpha2/admissionreport.go b/pkg/client/applyconfigurations/kyverno/v1alpha2/admissionreport.go deleted file mode 100644 index 9d62ac6554..0000000000 --- a/pkg/client/applyconfigurations/kyverno/v1alpha2/admissionreport.go +++ /dev/null @@ -1,211 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by applyconfiguration-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - v1 "k8s.io/client-go/applyconfigurations/meta/v1" -) - -// AdmissionReportApplyConfiguration represents an declarative configuration of the AdmissionReport type for use -// with apply. -type AdmissionReportApplyConfiguration struct { - v1.TypeMetaApplyConfiguration `json:",inline"` - *v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"` - Spec *v2.AdmissionReportSpecApplyConfiguration `json:"spec,omitempty"` -} - -// AdmissionReport constructs an declarative configuration of the AdmissionReport type for use with -// apply. -func AdmissionReport(name, namespace string) *AdmissionReportApplyConfiguration { - b := &AdmissionReportApplyConfiguration{} - b.WithName(name) - b.WithNamespace(namespace) - b.WithKind("AdmissionReport") - b.WithAPIVersion("kyverno.io/v1alpha2") - return b -} - -// WithKind sets the Kind field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Kind field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithKind(value string) *AdmissionReportApplyConfiguration { - b.Kind = &value - return b -} - -// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the APIVersion field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithAPIVersion(value string) *AdmissionReportApplyConfiguration { - b.APIVersion = &value - return b -} - -// WithName sets the Name field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Name field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithName(value string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Name = &value - return b -} - -// WithGenerateName sets the GenerateName field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the GenerateName field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithGenerateName(value string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.GenerateName = &value - return b -} - -// WithNamespace sets the Namespace field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Namespace field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithNamespace(value string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Namespace = &value - return b -} - -// WithUID sets the UID field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the UID field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithUID(value types.UID) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.UID = &value - return b -} - -// WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the ResourceVersion field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithResourceVersion(value string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.ResourceVersion = &value - return b -} - -// WithGeneration sets the Generation field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Generation field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithGeneration(value int64) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Generation = &value - return b -} - -// WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the CreationTimestamp field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithCreationTimestamp(value metav1.Time) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.CreationTimestamp = &value - return b -} - -// WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionTimestamp field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionTimestamp = &value - return b -} - -// WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionGracePeriodSeconds = &value - return b -} - -// WithLabels puts the entries into the Labels field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Labels field, -// overwriting an existing map entries in Labels field with the same key. -func (b *AdmissionReportApplyConfiguration) WithLabels(entries map[string]string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Labels == nil && len(entries) > 0 { - b.Labels = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Labels[k] = v - } - return b -} - -// WithAnnotations puts the entries into the Annotations field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Annotations field, -// overwriting an existing map entries in Annotations field with the same key. -func (b *AdmissionReportApplyConfiguration) WithAnnotations(entries map[string]string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Annotations == nil && len(entries) > 0 { - b.Annotations = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Annotations[k] = v - } - return b -} - -// WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the OwnerReferences field. -func (b *AdmissionReportApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - if values[i] == nil { - panic("nil value passed to WithOwnerReferences") - } - b.OwnerReferences = append(b.OwnerReferences, *values[i]) - } - return b -} - -// WithFinalizers adds the given value to the Finalizers field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Finalizers field. -func (b *AdmissionReportApplyConfiguration) WithFinalizers(values ...string) *AdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - b.Finalizers = append(b.Finalizers, values[i]) - } - return b -} - -func (b *AdmissionReportApplyConfiguration) ensureObjectMetaApplyConfigurationExists() { - if b.ObjectMetaApplyConfiguration == nil { - b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{} - } -} - -// WithSpec sets the Spec field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Spec field is set to the value of the last call. -func (b *AdmissionReportApplyConfiguration) WithSpec(value *v2.AdmissionReportSpecApplyConfiguration) *AdmissionReportApplyConfiguration { - b.Spec = value - return b -} diff --git a/pkg/client/applyconfigurations/kyverno/v1alpha2/backgroundscanreport.go b/pkg/client/applyconfigurations/kyverno/v1alpha2/backgroundscanreport.go deleted file mode 100644 index 897fac5469..0000000000 --- a/pkg/client/applyconfigurations/kyverno/v1alpha2/backgroundscanreport.go +++ /dev/null @@ -1,211 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by applyconfiguration-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - v1 "k8s.io/client-go/applyconfigurations/meta/v1" -) - -// BackgroundScanReportApplyConfiguration represents an declarative configuration of the BackgroundScanReport type for use -// with apply. -type BackgroundScanReportApplyConfiguration struct { - v1.TypeMetaApplyConfiguration `json:",inline"` - *v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"` - Spec *v2.BackgroundScanReportSpecApplyConfiguration `json:"spec,omitempty"` -} - -// BackgroundScanReport constructs an declarative configuration of the BackgroundScanReport type for use with -// apply. -func BackgroundScanReport(name, namespace string) *BackgroundScanReportApplyConfiguration { - b := &BackgroundScanReportApplyConfiguration{} - b.WithName(name) - b.WithNamespace(namespace) - b.WithKind("BackgroundScanReport") - b.WithAPIVersion("kyverno.io/v1alpha2") - return b -} - -// WithKind sets the Kind field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Kind field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithKind(value string) *BackgroundScanReportApplyConfiguration { - b.Kind = &value - return b -} - -// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the APIVersion field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithAPIVersion(value string) *BackgroundScanReportApplyConfiguration { - b.APIVersion = &value - return b -} - -// WithName sets the Name field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Name field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithName(value string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Name = &value - return b -} - -// WithGenerateName sets the GenerateName field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the GenerateName field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithGenerateName(value string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.GenerateName = &value - return b -} - -// WithNamespace sets the Namespace field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Namespace field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithNamespace(value string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Namespace = &value - return b -} - -// WithUID sets the UID field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the UID field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithUID(value types.UID) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.UID = &value - return b -} - -// WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the ResourceVersion field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithResourceVersion(value string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.ResourceVersion = &value - return b -} - -// WithGeneration sets the Generation field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Generation field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithGeneration(value int64) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Generation = &value - return b -} - -// WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the CreationTimestamp field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithCreationTimestamp(value metav1.Time) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.CreationTimestamp = &value - return b -} - -// WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionTimestamp field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionTimestamp = &value - return b -} - -// WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionGracePeriodSeconds = &value - return b -} - -// WithLabels puts the entries into the Labels field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Labels field, -// overwriting an existing map entries in Labels field with the same key. -func (b *BackgroundScanReportApplyConfiguration) WithLabels(entries map[string]string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Labels == nil && len(entries) > 0 { - b.Labels = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Labels[k] = v - } - return b -} - -// WithAnnotations puts the entries into the Annotations field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Annotations field, -// overwriting an existing map entries in Annotations field with the same key. -func (b *BackgroundScanReportApplyConfiguration) WithAnnotations(entries map[string]string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Annotations == nil && len(entries) > 0 { - b.Annotations = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Annotations[k] = v - } - return b -} - -// WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the OwnerReferences field. -func (b *BackgroundScanReportApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - if values[i] == nil { - panic("nil value passed to WithOwnerReferences") - } - b.OwnerReferences = append(b.OwnerReferences, *values[i]) - } - return b -} - -// WithFinalizers adds the given value to the Finalizers field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Finalizers field. -func (b *BackgroundScanReportApplyConfiguration) WithFinalizers(values ...string) *BackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - b.Finalizers = append(b.Finalizers, values[i]) - } - return b -} - -func (b *BackgroundScanReportApplyConfiguration) ensureObjectMetaApplyConfigurationExists() { - if b.ObjectMetaApplyConfiguration == nil { - b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{} - } -} - -// WithSpec sets the Spec field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Spec field is set to the value of the last call. -func (b *BackgroundScanReportApplyConfiguration) WithSpec(value *v2.BackgroundScanReportSpecApplyConfiguration) *BackgroundScanReportApplyConfiguration { - b.Spec = value - return b -} diff --git a/pkg/client/applyconfigurations/kyverno/v1alpha2/clusteradmissionreport.go b/pkg/client/applyconfigurations/kyverno/v1alpha2/clusteradmissionreport.go deleted file mode 100644 index 8cdb3b7fb9..0000000000 --- a/pkg/client/applyconfigurations/kyverno/v1alpha2/clusteradmissionreport.go +++ /dev/null @@ -1,210 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by applyconfiguration-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - v1 "k8s.io/client-go/applyconfigurations/meta/v1" -) - -// ClusterAdmissionReportApplyConfiguration represents an declarative configuration of the ClusterAdmissionReport type for use -// with apply. -type ClusterAdmissionReportApplyConfiguration struct { - v1.TypeMetaApplyConfiguration `json:",inline"` - *v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"` - Spec *v2.AdmissionReportSpecApplyConfiguration `json:"spec,omitempty"` -} - -// ClusterAdmissionReport constructs an declarative configuration of the ClusterAdmissionReport type for use with -// apply. -func ClusterAdmissionReport(name string) *ClusterAdmissionReportApplyConfiguration { - b := &ClusterAdmissionReportApplyConfiguration{} - b.WithName(name) - b.WithKind("ClusterAdmissionReport") - b.WithAPIVersion("kyverno.io/v1alpha2") - return b -} - -// WithKind sets the Kind field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Kind field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithKind(value string) *ClusterAdmissionReportApplyConfiguration { - b.Kind = &value - return b -} - -// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the APIVersion field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithAPIVersion(value string) *ClusterAdmissionReportApplyConfiguration { - b.APIVersion = &value - return b -} - -// WithName sets the Name field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Name field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithName(value string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Name = &value - return b -} - -// WithGenerateName sets the GenerateName field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the GenerateName field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithGenerateName(value string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.GenerateName = &value - return b -} - -// WithNamespace sets the Namespace field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Namespace field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithNamespace(value string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Namespace = &value - return b -} - -// WithUID sets the UID field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the UID field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithUID(value types.UID) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.UID = &value - return b -} - -// WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the ResourceVersion field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithResourceVersion(value string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.ResourceVersion = &value - return b -} - -// WithGeneration sets the Generation field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Generation field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithGeneration(value int64) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Generation = &value - return b -} - -// WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the CreationTimestamp field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithCreationTimestamp(value metav1.Time) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.CreationTimestamp = &value - return b -} - -// WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionTimestamp field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionTimestamp = &value - return b -} - -// WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionGracePeriodSeconds = &value - return b -} - -// WithLabels puts the entries into the Labels field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Labels field, -// overwriting an existing map entries in Labels field with the same key. -func (b *ClusterAdmissionReportApplyConfiguration) WithLabels(entries map[string]string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Labels == nil && len(entries) > 0 { - b.Labels = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Labels[k] = v - } - return b -} - -// WithAnnotations puts the entries into the Annotations field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Annotations field, -// overwriting an existing map entries in Annotations field with the same key. -func (b *ClusterAdmissionReportApplyConfiguration) WithAnnotations(entries map[string]string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Annotations == nil && len(entries) > 0 { - b.Annotations = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Annotations[k] = v - } - return b -} - -// WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the OwnerReferences field. -func (b *ClusterAdmissionReportApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - if values[i] == nil { - panic("nil value passed to WithOwnerReferences") - } - b.OwnerReferences = append(b.OwnerReferences, *values[i]) - } - return b -} - -// WithFinalizers adds the given value to the Finalizers field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Finalizers field. -func (b *ClusterAdmissionReportApplyConfiguration) WithFinalizers(values ...string) *ClusterAdmissionReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - b.Finalizers = append(b.Finalizers, values[i]) - } - return b -} - -func (b *ClusterAdmissionReportApplyConfiguration) ensureObjectMetaApplyConfigurationExists() { - if b.ObjectMetaApplyConfiguration == nil { - b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{} - } -} - -// WithSpec sets the Spec field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Spec field is set to the value of the last call. -func (b *ClusterAdmissionReportApplyConfiguration) WithSpec(value *v2.AdmissionReportSpecApplyConfiguration) *ClusterAdmissionReportApplyConfiguration { - b.Spec = value - return b -} diff --git a/pkg/client/applyconfigurations/kyverno/v1alpha2/clusterbackgroundscanreport.go b/pkg/client/applyconfigurations/kyverno/v1alpha2/clusterbackgroundscanreport.go deleted file mode 100644 index 427bb42dbe..0000000000 --- a/pkg/client/applyconfigurations/kyverno/v1alpha2/clusterbackgroundscanreport.go +++ /dev/null @@ -1,210 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by applyconfiguration-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - v1 "k8s.io/client-go/applyconfigurations/meta/v1" -) - -// ClusterBackgroundScanReportApplyConfiguration represents an declarative configuration of the ClusterBackgroundScanReport type for use -// with apply. -type ClusterBackgroundScanReportApplyConfiguration struct { - v1.TypeMetaApplyConfiguration `json:",inline"` - *v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"` - Spec *v2.BackgroundScanReportSpecApplyConfiguration `json:"spec,omitempty"` -} - -// ClusterBackgroundScanReport constructs an declarative configuration of the ClusterBackgroundScanReport type for use with -// apply. -func ClusterBackgroundScanReport(name string) *ClusterBackgroundScanReportApplyConfiguration { - b := &ClusterBackgroundScanReportApplyConfiguration{} - b.WithName(name) - b.WithKind("ClusterBackgroundScanReport") - b.WithAPIVersion("kyverno.io/v1alpha2") - return b -} - -// WithKind sets the Kind field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Kind field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithKind(value string) *ClusterBackgroundScanReportApplyConfiguration { - b.Kind = &value - return b -} - -// WithAPIVersion sets the APIVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the APIVersion field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithAPIVersion(value string) *ClusterBackgroundScanReportApplyConfiguration { - b.APIVersion = &value - return b -} - -// WithName sets the Name field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Name field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithName(value string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Name = &value - return b -} - -// WithGenerateName sets the GenerateName field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the GenerateName field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithGenerateName(value string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.GenerateName = &value - return b -} - -// WithNamespace sets the Namespace field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Namespace field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithNamespace(value string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Namespace = &value - return b -} - -// WithUID sets the UID field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the UID field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithUID(value types.UID) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.UID = &value - return b -} - -// WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the ResourceVersion field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithResourceVersion(value string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.ResourceVersion = &value - return b -} - -// WithGeneration sets the Generation field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Generation field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithGeneration(value int64) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.Generation = &value - return b -} - -// WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the CreationTimestamp field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithCreationTimestamp(value metav1.Time) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.CreationTimestamp = &value - return b -} - -// WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionTimestamp field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionTimestamp = &value - return b -} - -// WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - b.DeletionGracePeriodSeconds = &value - return b -} - -// WithLabels puts the entries into the Labels field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Labels field, -// overwriting an existing map entries in Labels field with the same key. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithLabels(entries map[string]string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Labels == nil && len(entries) > 0 { - b.Labels = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Labels[k] = v - } - return b -} - -// WithAnnotations puts the entries into the Annotations field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, the entries provided by each call will be put on the Annotations field, -// overwriting an existing map entries in Annotations field with the same key. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithAnnotations(entries map[string]string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - if b.Annotations == nil && len(entries) > 0 { - b.Annotations = make(map[string]string, len(entries)) - } - for k, v := range entries { - b.Annotations[k] = v - } - return b -} - -// WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the OwnerReferences field. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - if values[i] == nil { - panic("nil value passed to WithOwnerReferences") - } - b.OwnerReferences = append(b.OwnerReferences, *values[i]) - } - return b -} - -// WithFinalizers adds the given value to the Finalizers field in the declarative configuration -// and returns the receiver, so that objects can be build by chaining "With" function invocations. -// If called multiple times, values provided by each call will be appended to the Finalizers field. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithFinalizers(values ...string) *ClusterBackgroundScanReportApplyConfiguration { - b.ensureObjectMetaApplyConfigurationExists() - for i := range values { - b.Finalizers = append(b.Finalizers, values[i]) - } - return b -} - -func (b *ClusterBackgroundScanReportApplyConfiguration) ensureObjectMetaApplyConfigurationExists() { - if b.ObjectMetaApplyConfiguration == nil { - b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{} - } -} - -// WithSpec sets the Spec field in the declarative configuration to the given value -// and returns the receiver, so that objects can be built by chaining "With" function invocations. -// If called multiple times, the Spec field is set to the value of the last call. -func (b *ClusterBackgroundScanReportApplyConfiguration) WithSpec(value *v2.BackgroundScanReportSpecApplyConfiguration) *ClusterBackgroundScanReportApplyConfiguration { - b.Spec = value - return b -} diff --git a/pkg/client/applyconfigurations/utils.go b/pkg/client/applyconfigurations/utils.go index 3a55112f7e..4ad3f8fa23 100644 --- a/pkg/client/applyconfigurations/utils.go +++ b/pkg/client/applyconfigurations/utils.go @@ -20,20 +20,18 @@ package applyconfigurations import ( v1 "github.com/kyverno/kyverno/api/kyverno/v1" - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" v1beta1 "github.com/kyverno/kyverno/api/kyverno/v1beta1" v2 "github.com/kyverno/kyverno/api/kyverno/v2" v2alpha1 "github.com/kyverno/kyverno/api/kyverno/v2alpha1" v2beta1 "github.com/kyverno/kyverno/api/kyverno/v2beta1" - policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" + v1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" kyvernov1 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v1alpha2" kyvernov1beta1 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v1beta1" kyvernov2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2" kyvernov2alpha1 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2alpha1" kyvernov2beta1 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/kyverno/v2beta1" - applyconfigurationspolicyreportv1alpha2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/policyreport/v1alpha2" + policyreportv1alpha2 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/policyreport/v1alpha2" applyconfigurationsreportsv1 "github.com/kyverno/kyverno/pkg/client/applyconfigurations/reports/v1" schema "k8s.io/apimachinery/pkg/runtime/schema" ) @@ -150,16 +148,6 @@ func ForKind(kind schema.GroupVersionKind) interface{} { case v1.SchemeGroupVersion.WithKind("WebhookConfiguration"): return &kyvernov1.WebhookConfigurationApplyConfiguration{} - // Group=kyverno.io, Version=v1alpha2 - case v1alpha2.SchemeGroupVersion.WithKind("AdmissionReport"): - return &kyvernov1alpha2.AdmissionReportApplyConfiguration{} - case v1alpha2.SchemeGroupVersion.WithKind("BackgroundScanReport"): - return &kyvernov1alpha2.BackgroundScanReportApplyConfiguration{} - case v1alpha2.SchemeGroupVersion.WithKind("ClusterAdmissionReport"): - return &kyvernov1alpha2.ClusterAdmissionReportApplyConfiguration{} - case v1alpha2.SchemeGroupVersion.WithKind("ClusterBackgroundScanReport"): - return &kyvernov1alpha2.ClusterBackgroundScanReportApplyConfiguration{} - // Group=kyverno.io, Version=v1beta1 case v1beta1.SchemeGroupVersion.WithKind("AdmissionRequestInfoObject"): return &kyvernov1beta1.AdmissionRequestInfoObjectApplyConfiguration{} @@ -279,14 +267,14 @@ func ForKind(kind schema.GroupVersionKind) interface{} { return &applyconfigurationsreportsv1.EphemeralReportSpecApplyConfiguration{} // Group=wgpolicyk8s.io, Version=v1alpha2 - case policyreportv1alpha2.SchemeGroupVersion.WithKind("ClusterPolicyReport"): - return &applyconfigurationspolicyreportv1alpha2.ClusterPolicyReportApplyConfiguration{} - case policyreportv1alpha2.SchemeGroupVersion.WithKind("PolicyReport"): - return &applyconfigurationspolicyreportv1alpha2.PolicyReportApplyConfiguration{} - case policyreportv1alpha2.SchemeGroupVersion.WithKind("PolicyReportResult"): - return &applyconfigurationspolicyreportv1alpha2.PolicyReportResultApplyConfiguration{} - case policyreportv1alpha2.SchemeGroupVersion.WithKind("PolicyReportSummary"): - return &applyconfigurationspolicyreportv1alpha2.PolicyReportSummaryApplyConfiguration{} + case v1alpha2.SchemeGroupVersion.WithKind("ClusterPolicyReport"): + return &policyreportv1alpha2.ClusterPolicyReportApplyConfiguration{} + case v1alpha2.SchemeGroupVersion.WithKind("PolicyReport"): + return &policyreportv1alpha2.PolicyReportApplyConfiguration{} + case v1alpha2.SchemeGroupVersion.WithKind("PolicyReportResult"): + return &policyreportv1alpha2.PolicyReportResultApplyConfiguration{} + case v1alpha2.SchemeGroupVersion.WithKind("PolicyReportSummary"): + return &policyreportv1alpha2.PolicyReportSummaryApplyConfiguration{} } return nil diff --git a/pkg/client/clientset/versioned/clientset.go b/pkg/client/clientset/versioned/clientset.go index b441a72855..e641a3663f 100644 --- a/pkg/client/clientset/versioned/clientset.go +++ b/pkg/client/clientset/versioned/clientset.go @@ -23,7 +23,6 @@ import ( "net/http" kyvernov1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" kyvernov1beta1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1beta1" kyvernov2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v2" kyvernov2alpha1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v2alpha1" @@ -38,7 +37,6 @@ import ( type Interface interface { Discovery() discovery.DiscoveryInterface KyvernoV1() kyvernov1.KyvernoV1Interface - KyvernoV1alpha2() kyvernov1alpha2.KyvernoV1alpha2Interface KyvernoV1beta1() kyvernov1beta1.KyvernoV1beta1Interface KyvernoV2() kyvernov2.KyvernoV2Interface KyvernoV2beta1() kyvernov2beta1.KyvernoV2beta1Interface @@ -51,7 +49,6 @@ type Interface interface { type Clientset struct { *discovery.DiscoveryClient kyvernoV1 *kyvernov1.KyvernoV1Client - kyvernoV1alpha2 *kyvernov1alpha2.KyvernoV1alpha2Client kyvernoV1beta1 *kyvernov1beta1.KyvernoV1beta1Client kyvernoV2 *kyvernov2.KyvernoV2Client kyvernoV2beta1 *kyvernov2beta1.KyvernoV2beta1Client @@ -65,11 +62,6 @@ func (c *Clientset) KyvernoV1() kyvernov1.KyvernoV1Interface { return c.kyvernoV1 } -// KyvernoV1alpha2 retrieves the KyvernoV1alpha2Client -func (c *Clientset) KyvernoV1alpha2() kyvernov1alpha2.KyvernoV1alpha2Interface { - return c.kyvernoV1alpha2 -} - // KyvernoV1beta1 retrieves the KyvernoV1beta1Client func (c *Clientset) KyvernoV1beta1() kyvernov1beta1.KyvernoV1beta1Interface { return c.kyvernoV1beta1 @@ -148,10 +140,6 @@ func NewForConfigAndClient(c *rest.Config, httpClient *http.Client) (*Clientset, if err != nil { return nil, err } - cs.kyvernoV1alpha2, err = kyvernov1alpha2.NewForConfigAndClient(&configShallowCopy, httpClient) - if err != nil { - return nil, err - } cs.kyvernoV1beta1, err = kyvernov1beta1.NewForConfigAndClient(&configShallowCopy, httpClient) if err != nil { return nil, err @@ -198,7 +186,6 @@ func NewForConfigOrDie(c *rest.Config) *Clientset { func New(c rest.Interface) *Clientset { var cs Clientset cs.kyvernoV1 = kyvernov1.New(c) - cs.kyvernoV1alpha2 = kyvernov1alpha2.New(c) cs.kyvernoV1beta1 = kyvernov1beta1.New(c) cs.kyvernoV2 = kyvernov2.New(c) cs.kyvernoV2beta1 = kyvernov2beta1.New(c) diff --git a/pkg/client/clientset/versioned/fake/clientset_generated.go b/pkg/client/clientset/versioned/fake/clientset_generated.go index 6529f36b1e..2703e32053 100644 --- a/pkg/client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/client/clientset/versioned/fake/clientset_generated.go @@ -22,8 +22,6 @@ import ( clientset "github.com/kyverno/kyverno/pkg/client/clientset/versioned" kyvernov1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1" fakekyvernov1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1/fake" - kyvernov1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - fakekyvernov1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake" kyvernov1beta1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1beta1" fakekyvernov1beta1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1beta1/fake" kyvernov2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v2" @@ -98,11 +96,6 @@ func (c *Clientset) KyvernoV1() kyvernov1.KyvernoV1Interface { return &fakekyvernov1.FakeKyvernoV1{Fake: &c.Fake} } -// KyvernoV1alpha2 retrieves the KyvernoV1alpha2Client -func (c *Clientset) KyvernoV1alpha2() kyvernov1alpha2.KyvernoV1alpha2Interface { - return &fakekyvernov1alpha2.FakeKyvernoV1alpha2{Fake: &c.Fake} -} - // KyvernoV1beta1 retrieves the KyvernoV1beta1Client func (c *Clientset) KyvernoV1beta1() kyvernov1beta1.KyvernoV1beta1Interface { return &fakekyvernov1beta1.FakeKyvernoV1beta1{Fake: &c.Fake} diff --git a/pkg/client/clientset/versioned/fake/register.go b/pkg/client/clientset/versioned/fake/register.go index 5167ae96ca..1d133f7217 100644 --- a/pkg/client/clientset/versioned/fake/register.go +++ b/pkg/client/clientset/versioned/fake/register.go @@ -20,7 +20,6 @@ package fake import ( kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" kyvernov1beta1 "github.com/kyverno/kyverno/api/kyverno/v1beta1" kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2" kyvernov2alpha1 "github.com/kyverno/kyverno/api/kyverno/v2alpha1" @@ -39,7 +38,6 @@ var codecs = serializer.NewCodecFactory(scheme) var localSchemeBuilder = runtime.SchemeBuilder{ kyvernov1.AddToScheme, - kyvernov1alpha2.AddToScheme, kyvernov1beta1.AddToScheme, kyvernov2.AddToScheme, kyvernov2beta1.AddToScheme, diff --git a/pkg/client/clientset/versioned/scheme/register.go b/pkg/client/clientset/versioned/scheme/register.go index 882af745eb..929c919ee6 100644 --- a/pkg/client/clientset/versioned/scheme/register.go +++ b/pkg/client/clientset/versioned/scheme/register.go @@ -20,7 +20,6 @@ package scheme import ( kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" kyvernov1beta1 "github.com/kyverno/kyverno/api/kyverno/v1beta1" kyvernov2 "github.com/kyverno/kyverno/api/kyverno/v2" kyvernov2alpha1 "github.com/kyverno/kyverno/api/kyverno/v2alpha1" @@ -39,7 +38,6 @@ var Codecs = serializer.NewCodecFactory(Scheme) var ParameterCodec = runtime.NewParameterCodec(Scheme) var localSchemeBuilder = runtime.SchemeBuilder{ kyvernov1.AddToScheme, - kyvernov1alpha2.AddToScheme, kyvernov1beta1.AddToScheme, kyvernov2.AddToScheme, kyvernov2beta1.AddToScheme, diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/admissionreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/admissionreport.go deleted file mode 100644 index 80ee4f1bdc..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/admissionreport.go +++ /dev/null @@ -1,178 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - "time" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - scheme "github.com/kyverno/kyverno/pkg/client/clientset/versioned/scheme" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - rest "k8s.io/client-go/rest" -) - -// AdmissionReportsGetter has a method to return a AdmissionReportInterface. -// A group's client should implement this interface. -type AdmissionReportsGetter interface { - AdmissionReports(namespace string) AdmissionReportInterface -} - -// AdmissionReportInterface has methods to work with AdmissionReport resources. -type AdmissionReportInterface interface { - Create(ctx context.Context, admissionReport *v1alpha2.AdmissionReport, opts v1.CreateOptions) (*v1alpha2.AdmissionReport, error) - Update(ctx context.Context, admissionReport *v1alpha2.AdmissionReport, opts v1.UpdateOptions) (*v1alpha2.AdmissionReport, error) - Delete(ctx context.Context, name string, opts v1.DeleteOptions) error - DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error - Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha2.AdmissionReport, error) - List(ctx context.Context, opts v1.ListOptions) (*v1alpha2.AdmissionReportList, error) - Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) - Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.AdmissionReport, err error) - AdmissionReportExpansion -} - -// admissionReports implements AdmissionReportInterface -type admissionReports struct { - client rest.Interface - ns string -} - -// newAdmissionReports returns a AdmissionReports -func newAdmissionReports(c *KyvernoV1alpha2Client, namespace string) *admissionReports { - return &admissionReports{ - client: c.RESTClient(), - ns: namespace, - } -} - -// Get takes name of the admissionReport, and returns the corresponding admissionReport object, and an error if there is any. -func (c *admissionReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.AdmissionReport, err error) { - result = &v1alpha2.AdmissionReport{} - err = c.client.Get(). - Namespace(c.ns). - Resource("admissionreports"). - Name(name). - VersionedParams(&options, scheme.ParameterCodec). - Do(ctx). - Into(result) - return -} - -// List takes label and field selectors, and returns the list of AdmissionReports that match those selectors. -func (c *admissionReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.AdmissionReportList, err error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - result = &v1alpha2.AdmissionReportList{} - err = c.client.Get(). - Namespace(c.ns). - Resource("admissionreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Do(ctx). - Into(result) - return -} - -// Watch returns a watch.Interface that watches the requested admissionReports. -func (c *admissionReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - opts.Watch = true - return c.client.Get(). - Namespace(c.ns). - Resource("admissionreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Watch(ctx) -} - -// Create takes the representation of a admissionReport and creates it. Returns the server's representation of the admissionReport, and an error, if there is any. -func (c *admissionReports) Create(ctx context.Context, admissionReport *v1alpha2.AdmissionReport, opts v1.CreateOptions) (result *v1alpha2.AdmissionReport, err error) { - result = &v1alpha2.AdmissionReport{} - err = c.client.Post(). - Namespace(c.ns). - Resource("admissionreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Body(admissionReport). - Do(ctx). - Into(result) - return -} - -// Update takes the representation of a admissionReport and updates it. Returns the server's representation of the admissionReport, and an error, if there is any. -func (c *admissionReports) Update(ctx context.Context, admissionReport *v1alpha2.AdmissionReport, opts v1.UpdateOptions) (result *v1alpha2.AdmissionReport, err error) { - result = &v1alpha2.AdmissionReport{} - err = c.client.Put(). - Namespace(c.ns). - Resource("admissionreports"). - Name(admissionReport.Name). - VersionedParams(&opts, scheme.ParameterCodec). - Body(admissionReport). - Do(ctx). - Into(result) - return -} - -// Delete takes name of the admissionReport and deletes it. Returns an error if one occurs. -func (c *admissionReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - return c.client.Delete(). - Namespace(c.ns). - Resource("admissionreports"). - Name(name). - Body(&opts). - Do(ctx). - Error() -} - -// DeleteCollection deletes a collection of objects. -func (c *admissionReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - var timeout time.Duration - if listOpts.TimeoutSeconds != nil { - timeout = time.Duration(*listOpts.TimeoutSeconds) * time.Second - } - return c.client.Delete(). - Namespace(c.ns). - Resource("admissionreports"). - VersionedParams(&listOpts, scheme.ParameterCodec). - Timeout(timeout). - Body(&opts). - Do(ctx). - Error() -} - -// Patch applies the patch and returns the patched admissionReport. -func (c *admissionReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.AdmissionReport, err error) { - result = &v1alpha2.AdmissionReport{} - err = c.client.Patch(pt). - Namespace(c.ns). - Resource("admissionreports"). - Name(name). - SubResource(subresources...). - VersionedParams(&opts, scheme.ParameterCodec). - Body(data). - Do(ctx). - Into(result) - return -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/backgroundscanreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/backgroundscanreport.go deleted file mode 100644 index 8f59cdaef9..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/backgroundscanreport.go +++ /dev/null @@ -1,178 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - "time" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - scheme "github.com/kyverno/kyverno/pkg/client/clientset/versioned/scheme" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - rest "k8s.io/client-go/rest" -) - -// BackgroundScanReportsGetter has a method to return a BackgroundScanReportInterface. -// A group's client should implement this interface. -type BackgroundScanReportsGetter interface { - BackgroundScanReports(namespace string) BackgroundScanReportInterface -} - -// BackgroundScanReportInterface has methods to work with BackgroundScanReport resources. -type BackgroundScanReportInterface interface { - Create(ctx context.Context, backgroundScanReport *v1alpha2.BackgroundScanReport, opts v1.CreateOptions) (*v1alpha2.BackgroundScanReport, error) - Update(ctx context.Context, backgroundScanReport *v1alpha2.BackgroundScanReport, opts v1.UpdateOptions) (*v1alpha2.BackgroundScanReport, error) - Delete(ctx context.Context, name string, opts v1.DeleteOptions) error - DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error - Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha2.BackgroundScanReport, error) - List(ctx context.Context, opts v1.ListOptions) (*v1alpha2.BackgroundScanReportList, error) - Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) - Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.BackgroundScanReport, err error) - BackgroundScanReportExpansion -} - -// backgroundScanReports implements BackgroundScanReportInterface -type backgroundScanReports struct { - client rest.Interface - ns string -} - -// newBackgroundScanReports returns a BackgroundScanReports -func newBackgroundScanReports(c *KyvernoV1alpha2Client, namespace string) *backgroundScanReports { - return &backgroundScanReports{ - client: c.RESTClient(), - ns: namespace, - } -} - -// Get takes name of the backgroundScanReport, and returns the corresponding backgroundScanReport object, and an error if there is any. -func (c *backgroundScanReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.BackgroundScanReport, err error) { - result = &v1alpha2.BackgroundScanReport{} - err = c.client.Get(). - Namespace(c.ns). - Resource("backgroundscanreports"). - Name(name). - VersionedParams(&options, scheme.ParameterCodec). - Do(ctx). - Into(result) - return -} - -// List takes label and field selectors, and returns the list of BackgroundScanReports that match those selectors. -func (c *backgroundScanReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.BackgroundScanReportList, err error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - result = &v1alpha2.BackgroundScanReportList{} - err = c.client.Get(). - Namespace(c.ns). - Resource("backgroundscanreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Do(ctx). - Into(result) - return -} - -// Watch returns a watch.Interface that watches the requested backgroundScanReports. -func (c *backgroundScanReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - opts.Watch = true - return c.client.Get(). - Namespace(c.ns). - Resource("backgroundscanreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Watch(ctx) -} - -// Create takes the representation of a backgroundScanReport and creates it. Returns the server's representation of the backgroundScanReport, and an error, if there is any. -func (c *backgroundScanReports) Create(ctx context.Context, backgroundScanReport *v1alpha2.BackgroundScanReport, opts v1.CreateOptions) (result *v1alpha2.BackgroundScanReport, err error) { - result = &v1alpha2.BackgroundScanReport{} - err = c.client.Post(). - Namespace(c.ns). - Resource("backgroundscanreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Body(backgroundScanReport). - Do(ctx). - Into(result) - return -} - -// Update takes the representation of a backgroundScanReport and updates it. Returns the server's representation of the backgroundScanReport, and an error, if there is any. -func (c *backgroundScanReports) Update(ctx context.Context, backgroundScanReport *v1alpha2.BackgroundScanReport, opts v1.UpdateOptions) (result *v1alpha2.BackgroundScanReport, err error) { - result = &v1alpha2.BackgroundScanReport{} - err = c.client.Put(). - Namespace(c.ns). - Resource("backgroundscanreports"). - Name(backgroundScanReport.Name). - VersionedParams(&opts, scheme.ParameterCodec). - Body(backgroundScanReport). - Do(ctx). - Into(result) - return -} - -// Delete takes name of the backgroundScanReport and deletes it. Returns an error if one occurs. -func (c *backgroundScanReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - return c.client.Delete(). - Namespace(c.ns). - Resource("backgroundscanreports"). - Name(name). - Body(&opts). - Do(ctx). - Error() -} - -// DeleteCollection deletes a collection of objects. -func (c *backgroundScanReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - var timeout time.Duration - if listOpts.TimeoutSeconds != nil { - timeout = time.Duration(*listOpts.TimeoutSeconds) * time.Second - } - return c.client.Delete(). - Namespace(c.ns). - Resource("backgroundscanreports"). - VersionedParams(&listOpts, scheme.ParameterCodec). - Timeout(timeout). - Body(&opts). - Do(ctx). - Error() -} - -// Patch applies the patch and returns the patched backgroundScanReport. -func (c *backgroundScanReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.BackgroundScanReport, err error) { - result = &v1alpha2.BackgroundScanReport{} - err = c.client.Patch(pt). - Namespace(c.ns). - Resource("backgroundscanreports"). - Name(name). - SubResource(subresources...). - VersionedParams(&opts, scheme.ParameterCodec). - Body(data). - Do(ctx). - Into(result) - return -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusteradmissionreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusteradmissionreport.go deleted file mode 100644 index 54318ef3e6..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusteradmissionreport.go +++ /dev/null @@ -1,168 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - "time" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - scheme "github.com/kyverno/kyverno/pkg/client/clientset/versioned/scheme" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - rest "k8s.io/client-go/rest" -) - -// ClusterAdmissionReportsGetter has a method to return a ClusterAdmissionReportInterface. -// A group's client should implement this interface. -type ClusterAdmissionReportsGetter interface { - ClusterAdmissionReports() ClusterAdmissionReportInterface -} - -// ClusterAdmissionReportInterface has methods to work with ClusterAdmissionReport resources. -type ClusterAdmissionReportInterface interface { - Create(ctx context.Context, clusterAdmissionReport *v1alpha2.ClusterAdmissionReport, opts v1.CreateOptions) (*v1alpha2.ClusterAdmissionReport, error) - Update(ctx context.Context, clusterAdmissionReport *v1alpha2.ClusterAdmissionReport, opts v1.UpdateOptions) (*v1alpha2.ClusterAdmissionReport, error) - Delete(ctx context.Context, name string, opts v1.DeleteOptions) error - DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error - Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha2.ClusterAdmissionReport, error) - List(ctx context.Context, opts v1.ListOptions) (*v1alpha2.ClusterAdmissionReportList, error) - Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) - Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.ClusterAdmissionReport, err error) - ClusterAdmissionReportExpansion -} - -// clusterAdmissionReports implements ClusterAdmissionReportInterface -type clusterAdmissionReports struct { - client rest.Interface -} - -// newClusterAdmissionReports returns a ClusterAdmissionReports -func newClusterAdmissionReports(c *KyvernoV1alpha2Client) *clusterAdmissionReports { - return &clusterAdmissionReports{ - client: c.RESTClient(), - } -} - -// Get takes name of the clusterAdmissionReport, and returns the corresponding clusterAdmissionReport object, and an error if there is any. -func (c *clusterAdmissionReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.ClusterAdmissionReport, err error) { - result = &v1alpha2.ClusterAdmissionReport{} - err = c.client.Get(). - Resource("clusteradmissionreports"). - Name(name). - VersionedParams(&options, scheme.ParameterCodec). - Do(ctx). - Into(result) - return -} - -// List takes label and field selectors, and returns the list of ClusterAdmissionReports that match those selectors. -func (c *clusterAdmissionReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.ClusterAdmissionReportList, err error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - result = &v1alpha2.ClusterAdmissionReportList{} - err = c.client.Get(). - Resource("clusteradmissionreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Do(ctx). - Into(result) - return -} - -// Watch returns a watch.Interface that watches the requested clusterAdmissionReports. -func (c *clusterAdmissionReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - opts.Watch = true - return c.client.Get(). - Resource("clusteradmissionreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Watch(ctx) -} - -// Create takes the representation of a clusterAdmissionReport and creates it. Returns the server's representation of the clusterAdmissionReport, and an error, if there is any. -func (c *clusterAdmissionReports) Create(ctx context.Context, clusterAdmissionReport *v1alpha2.ClusterAdmissionReport, opts v1.CreateOptions) (result *v1alpha2.ClusterAdmissionReport, err error) { - result = &v1alpha2.ClusterAdmissionReport{} - err = c.client.Post(). - Resource("clusteradmissionreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Body(clusterAdmissionReport). - Do(ctx). - Into(result) - return -} - -// Update takes the representation of a clusterAdmissionReport and updates it. Returns the server's representation of the clusterAdmissionReport, and an error, if there is any. -func (c *clusterAdmissionReports) Update(ctx context.Context, clusterAdmissionReport *v1alpha2.ClusterAdmissionReport, opts v1.UpdateOptions) (result *v1alpha2.ClusterAdmissionReport, err error) { - result = &v1alpha2.ClusterAdmissionReport{} - err = c.client.Put(). - Resource("clusteradmissionreports"). - Name(clusterAdmissionReport.Name). - VersionedParams(&opts, scheme.ParameterCodec). - Body(clusterAdmissionReport). - Do(ctx). - Into(result) - return -} - -// Delete takes name of the clusterAdmissionReport and deletes it. Returns an error if one occurs. -func (c *clusterAdmissionReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - return c.client.Delete(). - Resource("clusteradmissionreports"). - Name(name). - Body(&opts). - Do(ctx). - Error() -} - -// DeleteCollection deletes a collection of objects. -func (c *clusterAdmissionReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - var timeout time.Duration - if listOpts.TimeoutSeconds != nil { - timeout = time.Duration(*listOpts.TimeoutSeconds) * time.Second - } - return c.client.Delete(). - Resource("clusteradmissionreports"). - VersionedParams(&listOpts, scheme.ParameterCodec). - Timeout(timeout). - Body(&opts). - Do(ctx). - Error() -} - -// Patch applies the patch and returns the patched clusterAdmissionReport. -func (c *clusterAdmissionReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.ClusterAdmissionReport, err error) { - result = &v1alpha2.ClusterAdmissionReport{} - err = c.client.Patch(pt). - Resource("clusteradmissionreports"). - Name(name). - SubResource(subresources...). - VersionedParams(&opts, scheme.ParameterCodec). - Body(data). - Do(ctx). - Into(result) - return -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusterbackgroundscanreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusterbackgroundscanreport.go deleted file mode 100644 index 94785442ab..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/clusterbackgroundscanreport.go +++ /dev/null @@ -1,168 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - "time" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - scheme "github.com/kyverno/kyverno/pkg/client/clientset/versioned/scheme" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - rest "k8s.io/client-go/rest" -) - -// ClusterBackgroundScanReportsGetter has a method to return a ClusterBackgroundScanReportInterface. -// A group's client should implement this interface. -type ClusterBackgroundScanReportsGetter interface { - ClusterBackgroundScanReports() ClusterBackgroundScanReportInterface -} - -// ClusterBackgroundScanReportInterface has methods to work with ClusterBackgroundScanReport resources. -type ClusterBackgroundScanReportInterface interface { - Create(ctx context.Context, clusterBackgroundScanReport *v1alpha2.ClusterBackgroundScanReport, opts v1.CreateOptions) (*v1alpha2.ClusterBackgroundScanReport, error) - Update(ctx context.Context, clusterBackgroundScanReport *v1alpha2.ClusterBackgroundScanReport, opts v1.UpdateOptions) (*v1alpha2.ClusterBackgroundScanReport, error) - Delete(ctx context.Context, name string, opts v1.DeleteOptions) error - DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error - Get(ctx context.Context, name string, opts v1.GetOptions) (*v1alpha2.ClusterBackgroundScanReport, error) - List(ctx context.Context, opts v1.ListOptions) (*v1alpha2.ClusterBackgroundScanReportList, error) - Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) - Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.ClusterBackgroundScanReport, err error) - ClusterBackgroundScanReportExpansion -} - -// clusterBackgroundScanReports implements ClusterBackgroundScanReportInterface -type clusterBackgroundScanReports struct { - client rest.Interface -} - -// newClusterBackgroundScanReports returns a ClusterBackgroundScanReports -func newClusterBackgroundScanReports(c *KyvernoV1alpha2Client) *clusterBackgroundScanReports { - return &clusterBackgroundScanReports{ - client: c.RESTClient(), - } -} - -// Get takes name of the clusterBackgroundScanReport, and returns the corresponding clusterBackgroundScanReport object, and an error if there is any. -func (c *clusterBackgroundScanReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - result = &v1alpha2.ClusterBackgroundScanReport{} - err = c.client.Get(). - Resource("clusterbackgroundscanreports"). - Name(name). - VersionedParams(&options, scheme.ParameterCodec). - Do(ctx). - Into(result) - return -} - -// List takes label and field selectors, and returns the list of ClusterBackgroundScanReports that match those selectors. -func (c *clusterBackgroundScanReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.ClusterBackgroundScanReportList, err error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - result = &v1alpha2.ClusterBackgroundScanReportList{} - err = c.client.Get(). - Resource("clusterbackgroundscanreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Do(ctx). - Into(result) - return -} - -// Watch returns a watch.Interface that watches the requested clusterBackgroundScanReports. -func (c *clusterBackgroundScanReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - var timeout time.Duration - if opts.TimeoutSeconds != nil { - timeout = time.Duration(*opts.TimeoutSeconds) * time.Second - } - opts.Watch = true - return c.client.Get(). - Resource("clusterbackgroundscanreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Timeout(timeout). - Watch(ctx) -} - -// Create takes the representation of a clusterBackgroundScanReport and creates it. Returns the server's representation of the clusterBackgroundScanReport, and an error, if there is any. -func (c *clusterBackgroundScanReports) Create(ctx context.Context, clusterBackgroundScanReport *v1alpha2.ClusterBackgroundScanReport, opts v1.CreateOptions) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - result = &v1alpha2.ClusterBackgroundScanReport{} - err = c.client.Post(). - Resource("clusterbackgroundscanreports"). - VersionedParams(&opts, scheme.ParameterCodec). - Body(clusterBackgroundScanReport). - Do(ctx). - Into(result) - return -} - -// Update takes the representation of a clusterBackgroundScanReport and updates it. Returns the server's representation of the clusterBackgroundScanReport, and an error, if there is any. -func (c *clusterBackgroundScanReports) Update(ctx context.Context, clusterBackgroundScanReport *v1alpha2.ClusterBackgroundScanReport, opts v1.UpdateOptions) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - result = &v1alpha2.ClusterBackgroundScanReport{} - err = c.client.Put(). - Resource("clusterbackgroundscanreports"). - Name(clusterBackgroundScanReport.Name). - VersionedParams(&opts, scheme.ParameterCodec). - Body(clusterBackgroundScanReport). - Do(ctx). - Into(result) - return -} - -// Delete takes name of the clusterBackgroundScanReport and deletes it. Returns an error if one occurs. -func (c *clusterBackgroundScanReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - return c.client.Delete(). - Resource("clusterbackgroundscanreports"). - Name(name). - Body(&opts). - Do(ctx). - Error() -} - -// DeleteCollection deletes a collection of objects. -func (c *clusterBackgroundScanReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - var timeout time.Duration - if listOpts.TimeoutSeconds != nil { - timeout = time.Duration(*listOpts.TimeoutSeconds) * time.Second - } - return c.client.Delete(). - Resource("clusterbackgroundscanreports"). - VersionedParams(&listOpts, scheme.ParameterCodec). - Timeout(timeout). - Body(&opts). - Do(ctx). - Error() -} - -// Patch applies the patch and returns the patched clusterBackgroundScanReport. -func (c *clusterBackgroundScanReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - result = &v1alpha2.ClusterBackgroundScanReport{} - err = c.client.Patch(pt). - Resource("clusterbackgroundscanreports"). - Name(name). - SubResource(subresources...). - VersionedParams(&opts, scheme.ParameterCodec). - Body(data). - Do(ctx). - Into(result) - return -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/doc.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/doc.go deleted file mode 100644 index baaf2d9853..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/doc.go +++ /dev/null @@ -1,20 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -// This package has the automatically generated typed clients. -package v1alpha2 diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/doc.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/doc.go deleted file mode 100644 index 16f4439906..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/doc.go +++ /dev/null @@ -1,20 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -// Package fake has the automatically generated clients. -package fake diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_admissionreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_admissionreport.go deleted file mode 100644 index 41c64ee484..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_admissionreport.go +++ /dev/null @@ -1,129 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package fake - -import ( - "context" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - labels "k8s.io/apimachinery/pkg/labels" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - testing "k8s.io/client-go/testing" -) - -// FakeAdmissionReports implements AdmissionReportInterface -type FakeAdmissionReports struct { - Fake *FakeKyvernoV1alpha2 - ns string -} - -var admissionreportsResource = v1alpha2.SchemeGroupVersion.WithResource("admissionreports") - -var admissionreportsKind = v1alpha2.SchemeGroupVersion.WithKind("AdmissionReport") - -// Get takes name of the admissionReport, and returns the corresponding admissionReport object, and an error if there is any. -func (c *FakeAdmissionReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.AdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewGetAction(admissionreportsResource, c.ns, name), &v1alpha2.AdmissionReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.AdmissionReport), err -} - -// List takes label and field selectors, and returns the list of AdmissionReports that match those selectors. -func (c *FakeAdmissionReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.AdmissionReportList, err error) { - obj, err := c.Fake. - Invokes(testing.NewListAction(admissionreportsResource, admissionreportsKind, c.ns, opts), &v1alpha2.AdmissionReportList{}) - - if obj == nil { - return nil, err - } - - label, _, _ := testing.ExtractFromListOptions(opts) - if label == nil { - label = labels.Everything() - } - list := &v1alpha2.AdmissionReportList{ListMeta: obj.(*v1alpha2.AdmissionReportList).ListMeta} - for _, item := range obj.(*v1alpha2.AdmissionReportList).Items { - if label.Matches(labels.Set(item.Labels)) { - list.Items = append(list.Items, item) - } - } - return list, err -} - -// Watch returns a watch.Interface that watches the requested admissionReports. -func (c *FakeAdmissionReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - return c.Fake. - InvokesWatch(testing.NewWatchAction(admissionreportsResource, c.ns, opts)) - -} - -// Create takes the representation of a admissionReport and creates it. Returns the server's representation of the admissionReport, and an error, if there is any. -func (c *FakeAdmissionReports) Create(ctx context.Context, admissionReport *v1alpha2.AdmissionReport, opts v1.CreateOptions) (result *v1alpha2.AdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewCreateAction(admissionreportsResource, c.ns, admissionReport), &v1alpha2.AdmissionReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.AdmissionReport), err -} - -// Update takes the representation of a admissionReport and updates it. Returns the server's representation of the admissionReport, and an error, if there is any. -func (c *FakeAdmissionReports) Update(ctx context.Context, admissionReport *v1alpha2.AdmissionReport, opts v1.UpdateOptions) (result *v1alpha2.AdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewUpdateAction(admissionreportsResource, c.ns, admissionReport), &v1alpha2.AdmissionReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.AdmissionReport), err -} - -// Delete takes name of the admissionReport and deletes it. Returns an error if one occurs. -func (c *FakeAdmissionReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - _, err := c.Fake. - Invokes(testing.NewDeleteActionWithOptions(admissionreportsResource, c.ns, name, opts), &v1alpha2.AdmissionReport{}) - - return err -} - -// DeleteCollection deletes a collection of objects. -func (c *FakeAdmissionReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - action := testing.NewDeleteCollectionAction(admissionreportsResource, c.ns, listOpts) - - _, err := c.Fake.Invokes(action, &v1alpha2.AdmissionReportList{}) - return err -} - -// Patch applies the patch and returns the patched admissionReport. -func (c *FakeAdmissionReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.AdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewPatchSubresourceAction(admissionreportsResource, c.ns, name, pt, data, subresources...), &v1alpha2.AdmissionReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.AdmissionReport), err -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_backgroundscanreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_backgroundscanreport.go deleted file mode 100644 index f0b428d3f4..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_backgroundscanreport.go +++ /dev/null @@ -1,129 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package fake - -import ( - "context" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - labels "k8s.io/apimachinery/pkg/labels" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - testing "k8s.io/client-go/testing" -) - -// FakeBackgroundScanReports implements BackgroundScanReportInterface -type FakeBackgroundScanReports struct { - Fake *FakeKyvernoV1alpha2 - ns string -} - -var backgroundscanreportsResource = v1alpha2.SchemeGroupVersion.WithResource("backgroundscanreports") - -var backgroundscanreportsKind = v1alpha2.SchemeGroupVersion.WithKind("BackgroundScanReport") - -// Get takes name of the backgroundScanReport, and returns the corresponding backgroundScanReport object, and an error if there is any. -func (c *FakeBackgroundScanReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.BackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewGetAction(backgroundscanreportsResource, c.ns, name), &v1alpha2.BackgroundScanReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.BackgroundScanReport), err -} - -// List takes label and field selectors, and returns the list of BackgroundScanReports that match those selectors. -func (c *FakeBackgroundScanReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.BackgroundScanReportList, err error) { - obj, err := c.Fake. - Invokes(testing.NewListAction(backgroundscanreportsResource, backgroundscanreportsKind, c.ns, opts), &v1alpha2.BackgroundScanReportList{}) - - if obj == nil { - return nil, err - } - - label, _, _ := testing.ExtractFromListOptions(opts) - if label == nil { - label = labels.Everything() - } - list := &v1alpha2.BackgroundScanReportList{ListMeta: obj.(*v1alpha2.BackgroundScanReportList).ListMeta} - for _, item := range obj.(*v1alpha2.BackgroundScanReportList).Items { - if label.Matches(labels.Set(item.Labels)) { - list.Items = append(list.Items, item) - } - } - return list, err -} - -// Watch returns a watch.Interface that watches the requested backgroundScanReports. -func (c *FakeBackgroundScanReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - return c.Fake. - InvokesWatch(testing.NewWatchAction(backgroundscanreportsResource, c.ns, opts)) - -} - -// Create takes the representation of a backgroundScanReport and creates it. Returns the server's representation of the backgroundScanReport, and an error, if there is any. -func (c *FakeBackgroundScanReports) Create(ctx context.Context, backgroundScanReport *v1alpha2.BackgroundScanReport, opts v1.CreateOptions) (result *v1alpha2.BackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewCreateAction(backgroundscanreportsResource, c.ns, backgroundScanReport), &v1alpha2.BackgroundScanReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.BackgroundScanReport), err -} - -// Update takes the representation of a backgroundScanReport and updates it. Returns the server's representation of the backgroundScanReport, and an error, if there is any. -func (c *FakeBackgroundScanReports) Update(ctx context.Context, backgroundScanReport *v1alpha2.BackgroundScanReport, opts v1.UpdateOptions) (result *v1alpha2.BackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewUpdateAction(backgroundscanreportsResource, c.ns, backgroundScanReport), &v1alpha2.BackgroundScanReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.BackgroundScanReport), err -} - -// Delete takes name of the backgroundScanReport and deletes it. Returns an error if one occurs. -func (c *FakeBackgroundScanReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - _, err := c.Fake. - Invokes(testing.NewDeleteActionWithOptions(backgroundscanreportsResource, c.ns, name, opts), &v1alpha2.BackgroundScanReport{}) - - return err -} - -// DeleteCollection deletes a collection of objects. -func (c *FakeBackgroundScanReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - action := testing.NewDeleteCollectionAction(backgroundscanreportsResource, c.ns, listOpts) - - _, err := c.Fake.Invokes(action, &v1alpha2.BackgroundScanReportList{}) - return err -} - -// Patch applies the patch and returns the patched backgroundScanReport. -func (c *FakeBackgroundScanReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.BackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewPatchSubresourceAction(backgroundscanreportsResource, c.ns, name, pt, data, subresources...), &v1alpha2.BackgroundScanReport{}) - - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.BackgroundScanReport), err -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusteradmissionreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusteradmissionreport.go deleted file mode 100644 index 9b358f35fd..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusteradmissionreport.go +++ /dev/null @@ -1,121 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package fake - -import ( - "context" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - labels "k8s.io/apimachinery/pkg/labels" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - testing "k8s.io/client-go/testing" -) - -// FakeClusterAdmissionReports implements ClusterAdmissionReportInterface -type FakeClusterAdmissionReports struct { - Fake *FakeKyvernoV1alpha2 -} - -var clusteradmissionreportsResource = v1alpha2.SchemeGroupVersion.WithResource("clusteradmissionreports") - -var clusteradmissionreportsKind = v1alpha2.SchemeGroupVersion.WithKind("ClusterAdmissionReport") - -// Get takes name of the clusterAdmissionReport, and returns the corresponding clusterAdmissionReport object, and an error if there is any. -func (c *FakeClusterAdmissionReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.ClusterAdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootGetAction(clusteradmissionreportsResource, name), &v1alpha2.ClusterAdmissionReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterAdmissionReport), err -} - -// List takes label and field selectors, and returns the list of ClusterAdmissionReports that match those selectors. -func (c *FakeClusterAdmissionReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.ClusterAdmissionReportList, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootListAction(clusteradmissionreportsResource, clusteradmissionreportsKind, opts), &v1alpha2.ClusterAdmissionReportList{}) - if obj == nil { - return nil, err - } - - label, _, _ := testing.ExtractFromListOptions(opts) - if label == nil { - label = labels.Everything() - } - list := &v1alpha2.ClusterAdmissionReportList{ListMeta: obj.(*v1alpha2.ClusterAdmissionReportList).ListMeta} - for _, item := range obj.(*v1alpha2.ClusterAdmissionReportList).Items { - if label.Matches(labels.Set(item.Labels)) { - list.Items = append(list.Items, item) - } - } - return list, err -} - -// Watch returns a watch.Interface that watches the requested clusterAdmissionReports. -func (c *FakeClusterAdmissionReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - return c.Fake. - InvokesWatch(testing.NewRootWatchAction(clusteradmissionreportsResource, opts)) -} - -// Create takes the representation of a clusterAdmissionReport and creates it. Returns the server's representation of the clusterAdmissionReport, and an error, if there is any. -func (c *FakeClusterAdmissionReports) Create(ctx context.Context, clusterAdmissionReport *v1alpha2.ClusterAdmissionReport, opts v1.CreateOptions) (result *v1alpha2.ClusterAdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootCreateAction(clusteradmissionreportsResource, clusterAdmissionReport), &v1alpha2.ClusterAdmissionReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterAdmissionReport), err -} - -// Update takes the representation of a clusterAdmissionReport and updates it. Returns the server's representation of the clusterAdmissionReport, and an error, if there is any. -func (c *FakeClusterAdmissionReports) Update(ctx context.Context, clusterAdmissionReport *v1alpha2.ClusterAdmissionReport, opts v1.UpdateOptions) (result *v1alpha2.ClusterAdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootUpdateAction(clusteradmissionreportsResource, clusterAdmissionReport), &v1alpha2.ClusterAdmissionReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterAdmissionReport), err -} - -// Delete takes name of the clusterAdmissionReport and deletes it. Returns an error if one occurs. -func (c *FakeClusterAdmissionReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - _, err := c.Fake. - Invokes(testing.NewRootDeleteActionWithOptions(clusteradmissionreportsResource, name, opts), &v1alpha2.ClusterAdmissionReport{}) - return err -} - -// DeleteCollection deletes a collection of objects. -func (c *FakeClusterAdmissionReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - action := testing.NewRootDeleteCollectionAction(clusteradmissionreportsResource, listOpts) - - _, err := c.Fake.Invokes(action, &v1alpha2.ClusterAdmissionReportList{}) - return err -} - -// Patch applies the patch and returns the patched clusterAdmissionReport. -func (c *FakeClusterAdmissionReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.ClusterAdmissionReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootPatchSubresourceAction(clusteradmissionreportsResource, name, pt, data, subresources...), &v1alpha2.ClusterAdmissionReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterAdmissionReport), err -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusterbackgroundscanreport.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusterbackgroundscanreport.go deleted file mode 100644 index 434c86d965..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_clusterbackgroundscanreport.go +++ /dev/null @@ -1,121 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package fake - -import ( - "context" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - labels "k8s.io/apimachinery/pkg/labels" - types "k8s.io/apimachinery/pkg/types" - watch "k8s.io/apimachinery/pkg/watch" - testing "k8s.io/client-go/testing" -) - -// FakeClusterBackgroundScanReports implements ClusterBackgroundScanReportInterface -type FakeClusterBackgroundScanReports struct { - Fake *FakeKyvernoV1alpha2 -} - -var clusterbackgroundscanreportsResource = v1alpha2.SchemeGroupVersion.WithResource("clusterbackgroundscanreports") - -var clusterbackgroundscanreportsKind = v1alpha2.SchemeGroupVersion.WithKind("ClusterBackgroundScanReport") - -// Get takes name of the clusterBackgroundScanReport, and returns the corresponding clusterBackgroundScanReport object, and an error if there is any. -func (c *FakeClusterBackgroundScanReports) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootGetAction(clusterbackgroundscanreportsResource, name), &v1alpha2.ClusterBackgroundScanReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterBackgroundScanReport), err -} - -// List takes label and field selectors, and returns the list of ClusterBackgroundScanReports that match those selectors. -func (c *FakeClusterBackgroundScanReports) List(ctx context.Context, opts v1.ListOptions) (result *v1alpha2.ClusterBackgroundScanReportList, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootListAction(clusterbackgroundscanreportsResource, clusterbackgroundscanreportsKind, opts), &v1alpha2.ClusterBackgroundScanReportList{}) - if obj == nil { - return nil, err - } - - label, _, _ := testing.ExtractFromListOptions(opts) - if label == nil { - label = labels.Everything() - } - list := &v1alpha2.ClusterBackgroundScanReportList{ListMeta: obj.(*v1alpha2.ClusterBackgroundScanReportList).ListMeta} - for _, item := range obj.(*v1alpha2.ClusterBackgroundScanReportList).Items { - if label.Matches(labels.Set(item.Labels)) { - list.Items = append(list.Items, item) - } - } - return list, err -} - -// Watch returns a watch.Interface that watches the requested clusterBackgroundScanReports. -func (c *FakeClusterBackgroundScanReports) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) { - return c.Fake. - InvokesWatch(testing.NewRootWatchAction(clusterbackgroundscanreportsResource, opts)) -} - -// Create takes the representation of a clusterBackgroundScanReport and creates it. Returns the server's representation of the clusterBackgroundScanReport, and an error, if there is any. -func (c *FakeClusterBackgroundScanReports) Create(ctx context.Context, clusterBackgroundScanReport *v1alpha2.ClusterBackgroundScanReport, opts v1.CreateOptions) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootCreateAction(clusterbackgroundscanreportsResource, clusterBackgroundScanReport), &v1alpha2.ClusterBackgroundScanReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterBackgroundScanReport), err -} - -// Update takes the representation of a clusterBackgroundScanReport and updates it. Returns the server's representation of the clusterBackgroundScanReport, and an error, if there is any. -func (c *FakeClusterBackgroundScanReports) Update(ctx context.Context, clusterBackgroundScanReport *v1alpha2.ClusterBackgroundScanReport, opts v1.UpdateOptions) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootUpdateAction(clusterbackgroundscanreportsResource, clusterBackgroundScanReport), &v1alpha2.ClusterBackgroundScanReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterBackgroundScanReport), err -} - -// Delete takes name of the clusterBackgroundScanReport and deletes it. Returns an error if one occurs. -func (c *FakeClusterBackgroundScanReports) Delete(ctx context.Context, name string, opts v1.DeleteOptions) error { - _, err := c.Fake. - Invokes(testing.NewRootDeleteActionWithOptions(clusterbackgroundscanreportsResource, name, opts), &v1alpha2.ClusterBackgroundScanReport{}) - return err -} - -// DeleteCollection deletes a collection of objects. -func (c *FakeClusterBackgroundScanReports) DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error { - action := testing.NewRootDeleteCollectionAction(clusterbackgroundscanreportsResource, listOpts) - - _, err := c.Fake.Invokes(action, &v1alpha2.ClusterBackgroundScanReportList{}) - return err -} - -// Patch applies the patch and returns the patched clusterBackgroundScanReport. -func (c *FakeClusterBackgroundScanReports) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1alpha2.ClusterBackgroundScanReport, err error) { - obj, err := c.Fake. - Invokes(testing.NewRootPatchSubresourceAction(clusterbackgroundscanreportsResource, name, pt, data, subresources...), &v1alpha2.ClusterBackgroundScanReport{}) - if obj == nil { - return nil, err - } - return obj.(*v1alpha2.ClusterBackgroundScanReport), err -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_kyverno_client.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_kyverno_client.go deleted file mode 100644 index d11e816a87..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/fake/fake_kyverno_client.go +++ /dev/null @@ -1,52 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package fake - -import ( - v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - rest "k8s.io/client-go/rest" - testing "k8s.io/client-go/testing" -) - -type FakeKyvernoV1alpha2 struct { - *testing.Fake -} - -func (c *FakeKyvernoV1alpha2) AdmissionReports(namespace string) v1alpha2.AdmissionReportInterface { - return &FakeAdmissionReports{c, namespace} -} - -func (c *FakeKyvernoV1alpha2) BackgroundScanReports(namespace string) v1alpha2.BackgroundScanReportInterface { - return &FakeBackgroundScanReports{c, namespace} -} - -func (c *FakeKyvernoV1alpha2) ClusterAdmissionReports() v1alpha2.ClusterAdmissionReportInterface { - return &FakeClusterAdmissionReports{c} -} - -func (c *FakeKyvernoV1alpha2) ClusterBackgroundScanReports() v1alpha2.ClusterBackgroundScanReportInterface { - return &FakeClusterBackgroundScanReports{c} -} - -// RESTClient returns a RESTClient that is used to communicate -// with API server by this client implementation. -func (c *FakeKyvernoV1alpha2) RESTClient() rest.Interface { - var ret *rest.RESTClient - return ret -} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/generated_expansion.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/generated_expansion.go deleted file mode 100644 index ee72f47bb4..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/generated_expansion.go +++ /dev/null @@ -1,27 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package v1alpha2 - -type AdmissionReportExpansion interface{} - -type BackgroundScanReportExpansion interface{} - -type ClusterAdmissionReportExpansion interface{} - -type ClusterBackgroundScanReportExpansion interface{} diff --git a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/kyverno_client.go b/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/kyverno_client.go deleted file mode 100644 index 2bbf2b40c2..0000000000 --- a/pkg/client/clientset/versioned/typed/kyverno/v1alpha2/kyverno_client.go +++ /dev/null @@ -1,122 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by client-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "net/http" - - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - "github.com/kyverno/kyverno/pkg/client/clientset/versioned/scheme" - rest "k8s.io/client-go/rest" -) - -type KyvernoV1alpha2Interface interface { - RESTClient() rest.Interface - AdmissionReportsGetter - BackgroundScanReportsGetter - ClusterAdmissionReportsGetter - ClusterBackgroundScanReportsGetter -} - -// KyvernoV1alpha2Client is used to interact with features provided by the kyverno.io group. -type KyvernoV1alpha2Client struct { - restClient rest.Interface -} - -func (c *KyvernoV1alpha2Client) AdmissionReports(namespace string) AdmissionReportInterface { - return newAdmissionReports(c, namespace) -} - -func (c *KyvernoV1alpha2Client) BackgroundScanReports(namespace string) BackgroundScanReportInterface { - return newBackgroundScanReports(c, namespace) -} - -func (c *KyvernoV1alpha2Client) ClusterAdmissionReports() ClusterAdmissionReportInterface { - return newClusterAdmissionReports(c) -} - -func (c *KyvernoV1alpha2Client) ClusterBackgroundScanReports() ClusterBackgroundScanReportInterface { - return newClusterBackgroundScanReports(c) -} - -// NewForConfig creates a new KyvernoV1alpha2Client for the given config. -// NewForConfig is equivalent to NewForConfigAndClient(c, httpClient), -// where httpClient was generated with rest.HTTPClientFor(c). -func NewForConfig(c *rest.Config) (*KyvernoV1alpha2Client, error) { - config := *c - if err := setConfigDefaults(&config); err != nil { - return nil, err - } - httpClient, err := rest.HTTPClientFor(&config) - if err != nil { - return nil, err - } - return NewForConfigAndClient(&config, httpClient) -} - -// NewForConfigAndClient creates a new KyvernoV1alpha2Client for the given config and http client. -// Note the http client provided takes precedence over the configured transport values. -func NewForConfigAndClient(c *rest.Config, h *http.Client) (*KyvernoV1alpha2Client, error) { - config := *c - if err := setConfigDefaults(&config); err != nil { - return nil, err - } - client, err := rest.RESTClientForConfigAndClient(&config, h) - if err != nil { - return nil, err - } - return &KyvernoV1alpha2Client{client}, nil -} - -// NewForConfigOrDie creates a new KyvernoV1alpha2Client for the given config and -// panics if there is an error in the config. -func NewForConfigOrDie(c *rest.Config) *KyvernoV1alpha2Client { - client, err := NewForConfig(c) - if err != nil { - panic(err) - } - return client -} - -// New creates a new KyvernoV1alpha2Client for the given RESTClient. -func New(c rest.Interface) *KyvernoV1alpha2Client { - return &KyvernoV1alpha2Client{c} -} - -func setConfigDefaults(config *rest.Config) error { - gv := v1alpha2.SchemeGroupVersion - config.GroupVersion = &gv - config.APIPath = "/apis" - config.NegotiatedSerializer = scheme.Codecs.WithoutConversion() - - if config.UserAgent == "" { - config.UserAgent = rest.DefaultKubernetesUserAgent() - } - - return nil -} - -// RESTClient returns a RESTClient that is used to communicate -// with API server by this client implementation. -func (c *KyvernoV1alpha2Client) RESTClient() rest.Interface { - if c == nil { - return nil - } - return c.restClient -} diff --git a/pkg/client/informers/externalversions/generic.go b/pkg/client/informers/externalversions/generic.go index 253cd53688..1c54952c75 100644 --- a/pkg/client/informers/externalversions/generic.go +++ b/pkg/client/informers/externalversions/generic.go @@ -22,12 +22,11 @@ import ( "fmt" v1 "github.com/kyverno/kyverno/api/kyverno/v1" - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" v1beta1 "github.com/kyverno/kyverno/api/kyverno/v1beta1" v2 "github.com/kyverno/kyverno/api/kyverno/v2" v2alpha1 "github.com/kyverno/kyverno/api/kyverno/v2alpha1" v2beta1 "github.com/kyverno/kyverno/api/kyverno/v2beta1" - policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" + v1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" schema "k8s.io/apimachinery/pkg/runtime/schema" cache "k8s.io/client-go/tools/cache" @@ -65,16 +64,6 @@ func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource case v1.SchemeGroupVersion.WithResource("policies"): return &genericInformer{resource: resource.GroupResource(), informer: f.Kyverno().V1().Policies().Informer()}, nil - // Group=kyverno.io, Version=v1alpha2 - case v1alpha2.SchemeGroupVersion.WithResource("admissionreports"): - return &genericInformer{resource: resource.GroupResource(), informer: f.Kyverno().V1alpha2().AdmissionReports().Informer()}, nil - case v1alpha2.SchemeGroupVersion.WithResource("backgroundscanreports"): - return &genericInformer{resource: resource.GroupResource(), informer: f.Kyverno().V1alpha2().BackgroundScanReports().Informer()}, nil - case v1alpha2.SchemeGroupVersion.WithResource("clusteradmissionreports"): - return &genericInformer{resource: resource.GroupResource(), informer: f.Kyverno().V1alpha2().ClusterAdmissionReports().Informer()}, nil - case v1alpha2.SchemeGroupVersion.WithResource("clusterbackgroundscanreports"): - return &genericInformer{resource: resource.GroupResource(), informer: f.Kyverno().V1alpha2().ClusterBackgroundScanReports().Informer()}, nil - // Group=kyverno.io, Version=v1beta1 case v1beta1.SchemeGroupVersion.WithResource("updaterequests"): return &genericInformer{resource: resource.GroupResource(), informer: f.Kyverno().V1beta1().UpdateRequests().Informer()}, nil @@ -120,9 +109,9 @@ func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource return &genericInformer{resource: resource.GroupResource(), informer: f.Reports().V1().EphemeralReports().Informer()}, nil // Group=wgpolicyk8s.io, Version=v1alpha2 - case policyreportv1alpha2.SchemeGroupVersion.WithResource("clusterpolicyreports"): + case v1alpha2.SchemeGroupVersion.WithResource("clusterpolicyreports"): return &genericInformer{resource: resource.GroupResource(), informer: f.Wgpolicyk8s().V1alpha2().ClusterPolicyReports().Informer()}, nil - case policyreportv1alpha2.SchemeGroupVersion.WithResource("policyreports"): + case v1alpha2.SchemeGroupVersion.WithResource("policyreports"): return &genericInformer{resource: resource.GroupResource(), informer: f.Wgpolicyk8s().V1alpha2().PolicyReports().Informer()}, nil } diff --git a/pkg/client/informers/externalversions/kyverno/interface.go b/pkg/client/informers/externalversions/kyverno/interface.go index 5084459ab1..bc99a0bf81 100644 --- a/pkg/client/informers/externalversions/kyverno/interface.go +++ b/pkg/client/informers/externalversions/kyverno/interface.go @@ -21,7 +21,6 @@ package kyverno import ( internalinterfaces "github.com/kyverno/kyverno/pkg/client/informers/externalversions/internalinterfaces" v1 "github.com/kyverno/kyverno/pkg/client/informers/externalversions/kyverno/v1" - v1alpha2 "github.com/kyverno/kyverno/pkg/client/informers/externalversions/kyverno/v1alpha2" v1beta1 "github.com/kyverno/kyverno/pkg/client/informers/externalversions/kyverno/v1beta1" v2 "github.com/kyverno/kyverno/pkg/client/informers/externalversions/kyverno/v2" v2alpha1 "github.com/kyverno/kyverno/pkg/client/informers/externalversions/kyverno/v2alpha1" @@ -32,8 +31,6 @@ import ( type Interface interface { // V1 provides access to shared informers for resources in V1. V1() v1.Interface - // V1alpha2 provides access to shared informers for resources in V1alpha2. - V1alpha2() v1alpha2.Interface // V1beta1 provides access to shared informers for resources in V1beta1. V1beta1() v1beta1.Interface // V2 provides access to shared informers for resources in V2. @@ -60,11 +57,6 @@ func (g *group) V1() v1.Interface { return v1.New(g.factory, g.namespace, g.tweakListOptions) } -// V1alpha2 returns a new v1alpha2.Interface. -func (g *group) V1alpha2() v1alpha2.Interface { - return v1alpha2.New(g.factory, g.namespace, g.tweakListOptions) -} - // V1beta1 returns a new v1beta1.Interface. func (g *group) V1beta1() v1beta1.Interface { return v1beta1.New(g.factory, g.namespace, g.tweakListOptions) diff --git a/pkg/client/informers/externalversions/kyverno/v1alpha2/admissionreport.go b/pkg/client/informers/externalversions/kyverno/v1alpha2/admissionreport.go deleted file mode 100644 index 9b9397ec69..0000000000 --- a/pkg/client/informers/externalversions/kyverno/v1alpha2/admissionreport.go +++ /dev/null @@ -1,90 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by informer-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - time "time" - - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - versioned "github.com/kyverno/kyverno/pkg/client/clientset/versioned" - internalinterfaces "github.com/kyverno/kyverno/pkg/client/informers/externalversions/internalinterfaces" - v1alpha2 "github.com/kyverno/kyverno/pkg/client/listers/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" -) - -// AdmissionReportInformer provides access to a shared informer and lister for -// AdmissionReports. -type AdmissionReportInformer interface { - Informer() cache.SharedIndexInformer - Lister() v1alpha2.AdmissionReportLister -} - -type admissionReportInformer struct { - factory internalinterfaces.SharedInformerFactory - tweakListOptions internalinterfaces.TweakListOptionsFunc - namespace string -} - -// NewAdmissionReportInformer constructs a new informer for AdmissionReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewAdmissionReportInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { - return NewFilteredAdmissionReportInformer(client, namespace, resyncPeriod, indexers, nil) -} - -// NewFilteredAdmissionReportInformer constructs a new informer for AdmissionReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewFilteredAdmissionReportInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { - return cache.NewSharedIndexInformer( - &cache.ListWatch{ - ListFunc: func(options v1.ListOptions) (runtime.Object, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().AdmissionReports(namespace).List(context.TODO(), options) - }, - WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().AdmissionReports(namespace).Watch(context.TODO(), options) - }, - }, - &kyvernov1alpha2.AdmissionReport{}, - resyncPeriod, - indexers, - ) -} - -func (f *admissionReportInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { - return NewFilteredAdmissionReportInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) -} - -func (f *admissionReportInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&kyvernov1alpha2.AdmissionReport{}, f.defaultInformer) -} - -func (f *admissionReportInformer) Lister() v1alpha2.AdmissionReportLister { - return v1alpha2.NewAdmissionReportLister(f.Informer().GetIndexer()) -} diff --git a/pkg/client/informers/externalversions/kyverno/v1alpha2/backgroundscanreport.go b/pkg/client/informers/externalversions/kyverno/v1alpha2/backgroundscanreport.go deleted file mode 100644 index 19eab33fb1..0000000000 --- a/pkg/client/informers/externalversions/kyverno/v1alpha2/backgroundscanreport.go +++ /dev/null @@ -1,90 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by informer-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - time "time" - - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - versioned "github.com/kyverno/kyverno/pkg/client/clientset/versioned" - internalinterfaces "github.com/kyverno/kyverno/pkg/client/informers/externalversions/internalinterfaces" - v1alpha2 "github.com/kyverno/kyverno/pkg/client/listers/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" -) - -// BackgroundScanReportInformer provides access to a shared informer and lister for -// BackgroundScanReports. -type BackgroundScanReportInformer interface { - Informer() cache.SharedIndexInformer - Lister() v1alpha2.BackgroundScanReportLister -} - -type backgroundScanReportInformer struct { - factory internalinterfaces.SharedInformerFactory - tweakListOptions internalinterfaces.TweakListOptionsFunc - namespace string -} - -// NewBackgroundScanReportInformer constructs a new informer for BackgroundScanReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewBackgroundScanReportInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { - return NewFilteredBackgroundScanReportInformer(client, namespace, resyncPeriod, indexers, nil) -} - -// NewFilteredBackgroundScanReportInformer constructs a new informer for BackgroundScanReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewFilteredBackgroundScanReportInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { - return cache.NewSharedIndexInformer( - &cache.ListWatch{ - ListFunc: func(options v1.ListOptions) (runtime.Object, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().BackgroundScanReports(namespace).List(context.TODO(), options) - }, - WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().BackgroundScanReports(namespace).Watch(context.TODO(), options) - }, - }, - &kyvernov1alpha2.BackgroundScanReport{}, - resyncPeriod, - indexers, - ) -} - -func (f *backgroundScanReportInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { - return NewFilteredBackgroundScanReportInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) -} - -func (f *backgroundScanReportInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&kyvernov1alpha2.BackgroundScanReport{}, f.defaultInformer) -} - -func (f *backgroundScanReportInformer) Lister() v1alpha2.BackgroundScanReportLister { - return v1alpha2.NewBackgroundScanReportLister(f.Informer().GetIndexer()) -} diff --git a/pkg/client/informers/externalversions/kyverno/v1alpha2/clusteradmissionreport.go b/pkg/client/informers/externalversions/kyverno/v1alpha2/clusteradmissionreport.go deleted file mode 100644 index 829a3b38cc..0000000000 --- a/pkg/client/informers/externalversions/kyverno/v1alpha2/clusteradmissionreport.go +++ /dev/null @@ -1,89 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by informer-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - time "time" - - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - versioned "github.com/kyverno/kyverno/pkg/client/clientset/versioned" - internalinterfaces "github.com/kyverno/kyverno/pkg/client/informers/externalversions/internalinterfaces" - v1alpha2 "github.com/kyverno/kyverno/pkg/client/listers/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" -) - -// ClusterAdmissionReportInformer provides access to a shared informer and lister for -// ClusterAdmissionReports. -type ClusterAdmissionReportInformer interface { - Informer() cache.SharedIndexInformer - Lister() v1alpha2.ClusterAdmissionReportLister -} - -type clusterAdmissionReportInformer struct { - factory internalinterfaces.SharedInformerFactory - tweakListOptions internalinterfaces.TweakListOptionsFunc -} - -// NewClusterAdmissionReportInformer constructs a new informer for ClusterAdmissionReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewClusterAdmissionReportInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { - return NewFilteredClusterAdmissionReportInformer(client, resyncPeriod, indexers, nil) -} - -// NewFilteredClusterAdmissionReportInformer constructs a new informer for ClusterAdmissionReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewFilteredClusterAdmissionReportInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { - return cache.NewSharedIndexInformer( - &cache.ListWatch{ - ListFunc: func(options v1.ListOptions) (runtime.Object, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().ClusterAdmissionReports().List(context.TODO(), options) - }, - WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().ClusterAdmissionReports().Watch(context.TODO(), options) - }, - }, - &kyvernov1alpha2.ClusterAdmissionReport{}, - resyncPeriod, - indexers, - ) -} - -func (f *clusterAdmissionReportInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { - return NewFilteredClusterAdmissionReportInformer(client, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) -} - -func (f *clusterAdmissionReportInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&kyvernov1alpha2.ClusterAdmissionReport{}, f.defaultInformer) -} - -func (f *clusterAdmissionReportInformer) Lister() v1alpha2.ClusterAdmissionReportLister { - return v1alpha2.NewClusterAdmissionReportLister(f.Informer().GetIndexer()) -} diff --git a/pkg/client/informers/externalversions/kyverno/v1alpha2/clusterbackgroundscanreport.go b/pkg/client/informers/externalversions/kyverno/v1alpha2/clusterbackgroundscanreport.go deleted file mode 100644 index aa6b5ea835..0000000000 --- a/pkg/client/informers/externalversions/kyverno/v1alpha2/clusterbackgroundscanreport.go +++ /dev/null @@ -1,89 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by informer-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - "context" - time "time" - - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - versioned "github.com/kyverno/kyverno/pkg/client/clientset/versioned" - internalinterfaces "github.com/kyverno/kyverno/pkg/client/informers/externalversions/internalinterfaces" - v1alpha2 "github.com/kyverno/kyverno/pkg/client/listers/kyverno/v1alpha2" - v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - runtime "k8s.io/apimachinery/pkg/runtime" - watch "k8s.io/apimachinery/pkg/watch" - cache "k8s.io/client-go/tools/cache" -) - -// ClusterBackgroundScanReportInformer provides access to a shared informer and lister for -// ClusterBackgroundScanReports. -type ClusterBackgroundScanReportInformer interface { - Informer() cache.SharedIndexInformer - Lister() v1alpha2.ClusterBackgroundScanReportLister -} - -type clusterBackgroundScanReportInformer struct { - factory internalinterfaces.SharedInformerFactory - tweakListOptions internalinterfaces.TweakListOptionsFunc -} - -// NewClusterBackgroundScanReportInformer constructs a new informer for ClusterBackgroundScanReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewClusterBackgroundScanReportInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { - return NewFilteredClusterBackgroundScanReportInformer(client, resyncPeriod, indexers, nil) -} - -// NewFilteredClusterBackgroundScanReportInformer constructs a new informer for ClusterBackgroundScanReport type. -// Always prefer using an informer factory to get a shared informer instead of getting an independent -// one. This reduces memory footprint and number of connections to the server. -func NewFilteredClusterBackgroundScanReportInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { - return cache.NewSharedIndexInformer( - &cache.ListWatch{ - ListFunc: func(options v1.ListOptions) (runtime.Object, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().ClusterBackgroundScanReports().List(context.TODO(), options) - }, - WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { - if tweakListOptions != nil { - tweakListOptions(&options) - } - return client.KyvernoV1alpha2().ClusterBackgroundScanReports().Watch(context.TODO(), options) - }, - }, - &kyvernov1alpha2.ClusterBackgroundScanReport{}, - resyncPeriod, - indexers, - ) -} - -func (f *clusterBackgroundScanReportInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { - return NewFilteredClusterBackgroundScanReportInformer(client, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) -} - -func (f *clusterBackgroundScanReportInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&kyvernov1alpha2.ClusterBackgroundScanReport{}, f.defaultInformer) -} - -func (f *clusterBackgroundScanReportInformer) Lister() v1alpha2.ClusterBackgroundScanReportLister { - return v1alpha2.NewClusterBackgroundScanReportLister(f.Informer().GetIndexer()) -} diff --git a/pkg/client/informers/externalversions/kyverno/v1alpha2/interface.go b/pkg/client/informers/externalversions/kyverno/v1alpha2/interface.go deleted file mode 100644 index 89060e4d1b..0000000000 --- a/pkg/client/informers/externalversions/kyverno/v1alpha2/interface.go +++ /dev/null @@ -1,66 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by informer-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - internalinterfaces "github.com/kyverno/kyverno/pkg/client/informers/externalversions/internalinterfaces" -) - -// Interface provides access to all the informers in this group version. -type Interface interface { - // AdmissionReports returns a AdmissionReportInformer. - AdmissionReports() AdmissionReportInformer - // BackgroundScanReports returns a BackgroundScanReportInformer. - BackgroundScanReports() BackgroundScanReportInformer - // ClusterAdmissionReports returns a ClusterAdmissionReportInformer. - ClusterAdmissionReports() ClusterAdmissionReportInformer - // ClusterBackgroundScanReports returns a ClusterBackgroundScanReportInformer. - ClusterBackgroundScanReports() ClusterBackgroundScanReportInformer -} - -type version struct { - factory internalinterfaces.SharedInformerFactory - namespace string - tweakListOptions internalinterfaces.TweakListOptionsFunc -} - -// New returns a new Interface. -func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { - return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} -} - -// AdmissionReports returns a AdmissionReportInformer. -func (v *version) AdmissionReports() AdmissionReportInformer { - return &admissionReportInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} -} - -// BackgroundScanReports returns a BackgroundScanReportInformer. -func (v *version) BackgroundScanReports() BackgroundScanReportInformer { - return &backgroundScanReportInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} -} - -// ClusterAdmissionReports returns a ClusterAdmissionReportInformer. -func (v *version) ClusterAdmissionReports() ClusterAdmissionReportInformer { - return &clusterAdmissionReportInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} -} - -// ClusterBackgroundScanReports returns a ClusterBackgroundScanReportInformer. -func (v *version) ClusterBackgroundScanReports() ClusterBackgroundScanReportInformer { - return &clusterBackgroundScanReportInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} -} diff --git a/pkg/client/listers/kyverno/v1alpha2/admissionreport.go b/pkg/client/listers/kyverno/v1alpha2/admissionreport.go deleted file mode 100644 index d9027bf57b..0000000000 --- a/pkg/client/listers/kyverno/v1alpha2/admissionreport.go +++ /dev/null @@ -1,99 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by lister-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - "k8s.io/apimachinery/pkg/api/errors" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/client-go/tools/cache" -) - -// AdmissionReportLister helps list AdmissionReports. -// All objects returned here must be treated as read-only. -type AdmissionReportLister interface { - // List lists all AdmissionReports in the indexer. - // Objects returned here must be treated as read-only. - List(selector labels.Selector) (ret []*v1alpha2.AdmissionReport, err error) - // AdmissionReports returns an object that can list and get AdmissionReports. - AdmissionReports(namespace string) AdmissionReportNamespaceLister - AdmissionReportListerExpansion -} - -// admissionReportLister implements the AdmissionReportLister interface. -type admissionReportLister struct { - indexer cache.Indexer -} - -// NewAdmissionReportLister returns a new AdmissionReportLister. -func NewAdmissionReportLister(indexer cache.Indexer) AdmissionReportLister { - return &admissionReportLister{indexer: indexer} -} - -// List lists all AdmissionReports in the indexer. -func (s *admissionReportLister) List(selector labels.Selector) (ret []*v1alpha2.AdmissionReport, err error) { - err = cache.ListAll(s.indexer, selector, func(m interface{}) { - ret = append(ret, m.(*v1alpha2.AdmissionReport)) - }) - return ret, err -} - -// AdmissionReports returns an object that can list and get AdmissionReports. -func (s *admissionReportLister) AdmissionReports(namespace string) AdmissionReportNamespaceLister { - return admissionReportNamespaceLister{indexer: s.indexer, namespace: namespace} -} - -// AdmissionReportNamespaceLister helps list and get AdmissionReports. -// All objects returned here must be treated as read-only. -type AdmissionReportNamespaceLister interface { - // List lists all AdmissionReports in the indexer for a given namespace. - // Objects returned here must be treated as read-only. - List(selector labels.Selector) (ret []*v1alpha2.AdmissionReport, err error) - // Get retrieves the AdmissionReport from the indexer for a given namespace and name. - // Objects returned here must be treated as read-only. - Get(name string) (*v1alpha2.AdmissionReport, error) - AdmissionReportNamespaceListerExpansion -} - -// admissionReportNamespaceLister implements the AdmissionReportNamespaceLister -// interface. -type admissionReportNamespaceLister struct { - indexer cache.Indexer - namespace string -} - -// List lists all AdmissionReports in the indexer for a given namespace. -func (s admissionReportNamespaceLister) List(selector labels.Selector) (ret []*v1alpha2.AdmissionReport, err error) { - err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) { - ret = append(ret, m.(*v1alpha2.AdmissionReport)) - }) - return ret, err -} - -// Get retrieves the AdmissionReport from the indexer for a given namespace and name. -func (s admissionReportNamespaceLister) Get(name string) (*v1alpha2.AdmissionReport, error) { - obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name) - if err != nil { - return nil, err - } - if !exists { - return nil, errors.NewNotFound(v1alpha2.Resource("admissionreport"), name) - } - return obj.(*v1alpha2.AdmissionReport), nil -} diff --git a/pkg/client/listers/kyverno/v1alpha2/backgroundscanreport.go b/pkg/client/listers/kyverno/v1alpha2/backgroundscanreport.go deleted file mode 100644 index f220f48eb8..0000000000 --- a/pkg/client/listers/kyverno/v1alpha2/backgroundscanreport.go +++ /dev/null @@ -1,99 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by lister-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - "k8s.io/apimachinery/pkg/api/errors" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/client-go/tools/cache" -) - -// BackgroundScanReportLister helps list BackgroundScanReports. -// All objects returned here must be treated as read-only. -type BackgroundScanReportLister interface { - // List lists all BackgroundScanReports in the indexer. - // Objects returned here must be treated as read-only. - List(selector labels.Selector) (ret []*v1alpha2.BackgroundScanReport, err error) - // BackgroundScanReports returns an object that can list and get BackgroundScanReports. - BackgroundScanReports(namespace string) BackgroundScanReportNamespaceLister - BackgroundScanReportListerExpansion -} - -// backgroundScanReportLister implements the BackgroundScanReportLister interface. -type backgroundScanReportLister struct { - indexer cache.Indexer -} - -// NewBackgroundScanReportLister returns a new BackgroundScanReportLister. -func NewBackgroundScanReportLister(indexer cache.Indexer) BackgroundScanReportLister { - return &backgroundScanReportLister{indexer: indexer} -} - -// List lists all BackgroundScanReports in the indexer. -func (s *backgroundScanReportLister) List(selector labels.Selector) (ret []*v1alpha2.BackgroundScanReport, err error) { - err = cache.ListAll(s.indexer, selector, func(m interface{}) { - ret = append(ret, m.(*v1alpha2.BackgroundScanReport)) - }) - return ret, err -} - -// BackgroundScanReports returns an object that can list and get BackgroundScanReports. -func (s *backgroundScanReportLister) BackgroundScanReports(namespace string) BackgroundScanReportNamespaceLister { - return backgroundScanReportNamespaceLister{indexer: s.indexer, namespace: namespace} -} - -// BackgroundScanReportNamespaceLister helps list and get BackgroundScanReports. -// All objects returned here must be treated as read-only. -type BackgroundScanReportNamespaceLister interface { - // List lists all BackgroundScanReports in the indexer for a given namespace. - // Objects returned here must be treated as read-only. - List(selector labels.Selector) (ret []*v1alpha2.BackgroundScanReport, err error) - // Get retrieves the BackgroundScanReport from the indexer for a given namespace and name. - // Objects returned here must be treated as read-only. - Get(name string) (*v1alpha2.BackgroundScanReport, error) - BackgroundScanReportNamespaceListerExpansion -} - -// backgroundScanReportNamespaceLister implements the BackgroundScanReportNamespaceLister -// interface. -type backgroundScanReportNamespaceLister struct { - indexer cache.Indexer - namespace string -} - -// List lists all BackgroundScanReports in the indexer for a given namespace. -func (s backgroundScanReportNamespaceLister) List(selector labels.Selector) (ret []*v1alpha2.BackgroundScanReport, err error) { - err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) { - ret = append(ret, m.(*v1alpha2.BackgroundScanReport)) - }) - return ret, err -} - -// Get retrieves the BackgroundScanReport from the indexer for a given namespace and name. -func (s backgroundScanReportNamespaceLister) Get(name string) (*v1alpha2.BackgroundScanReport, error) { - obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name) - if err != nil { - return nil, err - } - if !exists { - return nil, errors.NewNotFound(v1alpha2.Resource("backgroundscanreport"), name) - } - return obj.(*v1alpha2.BackgroundScanReport), nil -} diff --git a/pkg/client/listers/kyverno/v1alpha2/clusteradmissionreport.go b/pkg/client/listers/kyverno/v1alpha2/clusteradmissionreport.go deleted file mode 100644 index f37be8f8ec..0000000000 --- a/pkg/client/listers/kyverno/v1alpha2/clusteradmissionreport.go +++ /dev/null @@ -1,68 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by lister-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - "k8s.io/apimachinery/pkg/api/errors" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/client-go/tools/cache" -) - -// ClusterAdmissionReportLister helps list ClusterAdmissionReports. -// All objects returned here must be treated as read-only. -type ClusterAdmissionReportLister interface { - // List lists all ClusterAdmissionReports in the indexer. - // Objects returned here must be treated as read-only. - List(selector labels.Selector) (ret []*v1alpha2.ClusterAdmissionReport, err error) - // Get retrieves the ClusterAdmissionReport from the index for a given name. - // Objects returned here must be treated as read-only. - Get(name string) (*v1alpha2.ClusterAdmissionReport, error) - ClusterAdmissionReportListerExpansion -} - -// clusterAdmissionReportLister implements the ClusterAdmissionReportLister interface. -type clusterAdmissionReportLister struct { - indexer cache.Indexer -} - -// NewClusterAdmissionReportLister returns a new ClusterAdmissionReportLister. -func NewClusterAdmissionReportLister(indexer cache.Indexer) ClusterAdmissionReportLister { - return &clusterAdmissionReportLister{indexer: indexer} -} - -// List lists all ClusterAdmissionReports in the indexer. -func (s *clusterAdmissionReportLister) List(selector labels.Selector) (ret []*v1alpha2.ClusterAdmissionReport, err error) { - err = cache.ListAll(s.indexer, selector, func(m interface{}) { - ret = append(ret, m.(*v1alpha2.ClusterAdmissionReport)) - }) - return ret, err -} - -// Get retrieves the ClusterAdmissionReport from the index for a given name. -func (s *clusterAdmissionReportLister) Get(name string) (*v1alpha2.ClusterAdmissionReport, error) { - obj, exists, err := s.indexer.GetByKey(name) - if err != nil { - return nil, err - } - if !exists { - return nil, errors.NewNotFound(v1alpha2.Resource("clusteradmissionreport"), name) - } - return obj.(*v1alpha2.ClusterAdmissionReport), nil -} diff --git a/pkg/client/listers/kyverno/v1alpha2/clusterbackgroundscanreport.go b/pkg/client/listers/kyverno/v1alpha2/clusterbackgroundscanreport.go deleted file mode 100644 index 0763fee152..0000000000 --- a/pkg/client/listers/kyverno/v1alpha2/clusterbackgroundscanreport.go +++ /dev/null @@ -1,68 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by lister-gen. DO NOT EDIT. - -package v1alpha2 - -import ( - v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - "k8s.io/apimachinery/pkg/api/errors" - "k8s.io/apimachinery/pkg/labels" - "k8s.io/client-go/tools/cache" -) - -// ClusterBackgroundScanReportLister helps list ClusterBackgroundScanReports. -// All objects returned here must be treated as read-only. -type ClusterBackgroundScanReportLister interface { - // List lists all ClusterBackgroundScanReports in the indexer. - // Objects returned here must be treated as read-only. - List(selector labels.Selector) (ret []*v1alpha2.ClusterBackgroundScanReport, err error) - // Get retrieves the ClusterBackgroundScanReport from the index for a given name. - // Objects returned here must be treated as read-only. - Get(name string) (*v1alpha2.ClusterBackgroundScanReport, error) - ClusterBackgroundScanReportListerExpansion -} - -// clusterBackgroundScanReportLister implements the ClusterBackgroundScanReportLister interface. -type clusterBackgroundScanReportLister struct { - indexer cache.Indexer -} - -// NewClusterBackgroundScanReportLister returns a new ClusterBackgroundScanReportLister. -func NewClusterBackgroundScanReportLister(indexer cache.Indexer) ClusterBackgroundScanReportLister { - return &clusterBackgroundScanReportLister{indexer: indexer} -} - -// List lists all ClusterBackgroundScanReports in the indexer. -func (s *clusterBackgroundScanReportLister) List(selector labels.Selector) (ret []*v1alpha2.ClusterBackgroundScanReport, err error) { - err = cache.ListAll(s.indexer, selector, func(m interface{}) { - ret = append(ret, m.(*v1alpha2.ClusterBackgroundScanReport)) - }) - return ret, err -} - -// Get retrieves the ClusterBackgroundScanReport from the index for a given name. -func (s *clusterBackgroundScanReportLister) Get(name string) (*v1alpha2.ClusterBackgroundScanReport, error) { - obj, exists, err := s.indexer.GetByKey(name) - if err != nil { - return nil, err - } - if !exists { - return nil, errors.NewNotFound(v1alpha2.Resource("clusterbackgroundscanreport"), name) - } - return obj.(*v1alpha2.ClusterBackgroundScanReport), nil -} diff --git a/pkg/client/listers/kyverno/v1alpha2/expansion_generated.go b/pkg/client/listers/kyverno/v1alpha2/expansion_generated.go deleted file mode 100644 index cb83c3919b..0000000000 --- a/pkg/client/listers/kyverno/v1alpha2/expansion_generated.go +++ /dev/null @@ -1,43 +0,0 @@ -/* -Copyright The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Code generated by lister-gen. DO NOT EDIT. - -package v1alpha2 - -// AdmissionReportListerExpansion allows custom methods to be added to -// AdmissionReportLister. -type AdmissionReportListerExpansion interface{} - -// AdmissionReportNamespaceListerExpansion allows custom methods to be added to -// AdmissionReportNamespaceLister. -type AdmissionReportNamespaceListerExpansion interface{} - -// BackgroundScanReportListerExpansion allows custom methods to be added to -// BackgroundScanReportLister. -type BackgroundScanReportListerExpansion interface{} - -// BackgroundScanReportNamespaceListerExpansion allows custom methods to be added to -// BackgroundScanReportNamespaceLister. -type BackgroundScanReportNamespaceListerExpansion interface{} - -// ClusterAdmissionReportListerExpansion allows custom methods to be added to -// ClusterAdmissionReportLister. -type ClusterAdmissionReportListerExpansion interface{} - -// ClusterBackgroundScanReportListerExpansion allows custom methods to be added to -// ClusterBackgroundScanReportLister. -type ClusterBackgroundScanReportListerExpansion interface{} diff --git a/pkg/clients/kyverno/clientset.generated.go b/pkg/clients/kyverno/clientset.generated.go index 197102c06e..78ac19521e 100644 --- a/pkg/clients/kyverno/clientset.generated.go +++ b/pkg/clients/kyverno/clientset.generated.go @@ -4,7 +4,6 @@ import ( "github.com/go-logr/logr" github_com_kyverno_kyverno_pkg_client_clientset_versioned "github.com/kyverno/kyverno/pkg/client/clientset/versioned" github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1" - github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1beta1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1beta1" github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v2" github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v2alpha1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v2alpha1" @@ -13,7 +12,6 @@ import ( github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_reports_v1 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/reports/v1" discovery "github.com/kyverno/kyverno/pkg/clients/kyverno/discovery" kyvernov1 "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1" - kyvernov1alpha2 "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1alpha2" kyvernov1beta1 "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1beta1" kyvernov2 "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov2" kyvernov2alpha1 "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov2alpha1" @@ -27,7 +25,6 @@ import ( type clientset struct { discovery k8s_io_client_go_discovery.DiscoveryInterface kyvernov1 github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1.KyvernoV1Interface - kyvernov1alpha2 github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface kyvernov1beta1 github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1beta1.KyvernoV1beta1Interface kyvernov2 github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v2.KyvernoV2Interface kyvernov2alpha1 github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v2alpha1.KyvernoV2alpha1Interface @@ -42,9 +39,6 @@ func (c *clientset) Discovery() k8s_io_client_go_discovery.DiscoveryInterface { func (c *clientset) KyvernoV1() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1.KyvernoV1Interface { return c.kyvernov1 } -func (c *clientset) KyvernoV1alpha2() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface { - return c.kyvernov1alpha2 -} func (c *clientset) KyvernoV1beta1() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1beta1.KyvernoV1beta1Interface { return c.kyvernov1beta1 } @@ -68,7 +62,6 @@ func WrapWithMetrics(inner github_com_kyverno_kyverno_pkg_client_clientset_versi return &clientset{ discovery: discovery.WithMetrics(inner.Discovery(), metrics.ClusteredClientQueryRecorder(m, "Discovery", clientType)), kyvernov1: kyvernov1.WithMetrics(inner.KyvernoV1(), m, clientType), - kyvernov1alpha2: kyvernov1alpha2.WithMetrics(inner.KyvernoV1alpha2(), m, clientType), kyvernov1beta1: kyvernov1beta1.WithMetrics(inner.KyvernoV1beta1(), m, clientType), kyvernov2: kyvernov2.WithMetrics(inner.KyvernoV2(), m, clientType), kyvernov2alpha1: kyvernov2alpha1.WithMetrics(inner.KyvernoV2alpha1(), m, clientType), @@ -82,7 +75,6 @@ func WrapWithTracing(inner github_com_kyverno_kyverno_pkg_client_clientset_versi return &clientset{ discovery: discovery.WithTracing(inner.Discovery(), "Discovery", ""), kyvernov1: kyvernov1.WithTracing(inner.KyvernoV1(), "KyvernoV1"), - kyvernov1alpha2: kyvernov1alpha2.WithTracing(inner.KyvernoV1alpha2(), "KyvernoV1alpha2"), kyvernov1beta1: kyvernov1beta1.WithTracing(inner.KyvernoV1beta1(), "KyvernoV1beta1"), kyvernov2: kyvernov2.WithTracing(inner.KyvernoV2(), "KyvernoV2"), kyvernov2alpha1: kyvernov2alpha1.WithTracing(inner.KyvernoV2alpha1(), "KyvernoV2alpha1"), @@ -96,7 +88,6 @@ func WrapWithLogging(inner github_com_kyverno_kyverno_pkg_client_clientset_versi return &clientset{ discovery: discovery.WithLogging(inner.Discovery(), logger.WithValues("group", "Discovery")), kyvernov1: kyvernov1.WithLogging(inner.KyvernoV1(), logger.WithValues("group", "KyvernoV1")), - kyvernov1alpha2: kyvernov1alpha2.WithLogging(inner.KyvernoV1alpha2(), logger.WithValues("group", "KyvernoV1alpha2")), kyvernov1beta1: kyvernov1beta1.WithLogging(inner.KyvernoV1beta1(), logger.WithValues("group", "KyvernoV1beta1")), kyvernov2: kyvernov2.WithLogging(inner.KyvernoV2(), logger.WithValues("group", "KyvernoV2")), kyvernov2alpha1: kyvernov2alpha1.WithLogging(inner.KyvernoV2alpha1(), logger.WithValues("group", "KyvernoV2alpha1")), diff --git a/pkg/clients/kyverno/kyvernov1alpha2/admissionreports/resource.generated.go b/pkg/clients/kyverno/kyvernov1alpha2/admissionreports/resource.generated.go deleted file mode 100644 index 7a56a4681b..0000000000 --- a/pkg/clients/kyverno/kyvernov1alpha2/admissionreports/resource.generated.go +++ /dev/null @@ -1,337 +0,0 @@ -package resource - -import ( - context "context" - "fmt" - "time" - - "github.com/go-logr/logr" - github_com_kyverno_kyverno_api_kyverno_v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - "github.com/kyverno/kyverno/pkg/metrics" - "github.com/kyverno/kyverno/pkg/tracing" - "go.opentelemetry.io/otel/trace" - "go.uber.org/multierr" - k8s_io_apimachinery_pkg_apis_meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types" - k8s_io_apimachinery_pkg_watch "k8s.io/apimachinery/pkg/watch" -) - -func WithLogging(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface, logger logr.Logger) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface { - return &withLogging{inner, logger} -} - -func WithMetrics(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface, recorder metrics.Recorder) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface { - return &withMetrics{inner, recorder} -} - -func WithTracing(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface, client, kind string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface { - return &withTracing{inner, client, kind} -} - -type withLogging struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface - logger logr.Logger -} - -func (c *withLogging) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Create") - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Create failed", "duration", time.Since(start)) - } else { - logger.Info("Create done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "Delete") - ret0 := c.inner.Delete(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "Delete failed", "duration", time.Since(start)) - } else { - logger.Info("Delete done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "DeleteCollection") - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "DeleteCollection failed", "duration", time.Since(start)) - } else { - logger.Info("DeleteCollection done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Get") - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Get failed", "duration", time.Since(start)) - } else { - logger.Info("Get done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReportList, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "List") - ret0, ret1 := c.inner.List(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "List failed", "duration", time.Since(start)) - } else { - logger.Info("List done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Patch") - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Patch failed", "duration", time.Since(start)) - } else { - logger.Info("Patch done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Update") - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Update failed", "duration", time.Since(start)) - } else { - logger.Info("Update done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Watch") - ret0, ret1 := c.inner.Watch(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Watch failed", "duration", time.Since(start)) - } else { - logger.Info("Watch done", "duration", time.Since(start)) - } - return ret0, ret1 -} - -type withMetrics struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface - recorder metrics.Recorder -} - -func (c *withMetrics) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "create") - return c.inner.Create(arg0, arg1, arg2) -} -func (c *withMetrics) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete") - return c.inner.Delete(arg0, arg1, arg2) -} -func (c *withMetrics) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete_collection") - return c.inner.DeleteCollection(arg0, arg1, arg2) -} -func (c *withMetrics) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "get") - return c.inner.Get(arg0, arg1, arg2) -} -func (c *withMetrics) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReportList, error) { - defer c.recorder.RecordWithContext(arg0, "list") - return c.inner.List(arg0, arg1) -} -func (c *withMetrics) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "patch") - return c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) -} -func (c *withMetrics) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "update") - return c.inner.Update(arg0, arg1, arg2) -} -func (c *withMetrics) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - defer c.recorder.RecordWithContext(arg0, "watch") - return c.inner.Watch(arg0, arg1) -} - -type withTracing struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface - client string - kind string -} - -func (c *withTracing) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Create"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Create"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Delete"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Delete"), - ), - ) - defer span.End() - } - ret0 := c.inner.Delete(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "DeleteCollection"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("DeleteCollection"), - ), - ) - defer span.End() - } - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Get"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Get"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReportList, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "List"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("List"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.List(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Patch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Patch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.AdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Update"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Update"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Watch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Watch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Watch(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} diff --git a/pkg/clients/kyverno/kyvernov1alpha2/backgroundscanreports/resource.generated.go b/pkg/clients/kyverno/kyvernov1alpha2/backgroundscanreports/resource.generated.go deleted file mode 100644 index 9966aa120a..0000000000 --- a/pkg/clients/kyverno/kyvernov1alpha2/backgroundscanreports/resource.generated.go +++ /dev/null @@ -1,337 +0,0 @@ -package resource - -import ( - context "context" - "fmt" - "time" - - "github.com/go-logr/logr" - github_com_kyverno_kyverno_api_kyverno_v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - "github.com/kyverno/kyverno/pkg/metrics" - "github.com/kyverno/kyverno/pkg/tracing" - "go.opentelemetry.io/otel/trace" - "go.uber.org/multierr" - k8s_io_apimachinery_pkg_apis_meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types" - k8s_io_apimachinery_pkg_watch "k8s.io/apimachinery/pkg/watch" -) - -func WithLogging(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface, logger logr.Logger) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface { - return &withLogging{inner, logger} -} - -func WithMetrics(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface, recorder metrics.Recorder) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface { - return &withMetrics{inner, recorder} -} - -func WithTracing(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface, client, kind string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface { - return &withTracing{inner, client, kind} -} - -type withLogging struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface - logger logr.Logger -} - -func (c *withLogging) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Create") - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Create failed", "duration", time.Since(start)) - } else { - logger.Info("Create done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "Delete") - ret0 := c.inner.Delete(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "Delete failed", "duration", time.Since(start)) - } else { - logger.Info("Delete done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "DeleteCollection") - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "DeleteCollection failed", "duration", time.Since(start)) - } else { - logger.Info("DeleteCollection done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Get") - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Get failed", "duration", time.Since(start)) - } else { - logger.Info("Get done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReportList, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "List") - ret0, ret1 := c.inner.List(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "List failed", "duration", time.Since(start)) - } else { - logger.Info("List done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Patch") - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Patch failed", "duration", time.Since(start)) - } else { - logger.Info("Patch done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Update") - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Update failed", "duration", time.Since(start)) - } else { - logger.Info("Update done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Watch") - ret0, ret1 := c.inner.Watch(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Watch failed", "duration", time.Since(start)) - } else { - logger.Info("Watch done", "duration", time.Since(start)) - } - return ret0, ret1 -} - -type withMetrics struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface - recorder metrics.Recorder -} - -func (c *withMetrics) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "create") - return c.inner.Create(arg0, arg1, arg2) -} -func (c *withMetrics) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete") - return c.inner.Delete(arg0, arg1, arg2) -} -func (c *withMetrics) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete_collection") - return c.inner.DeleteCollection(arg0, arg1, arg2) -} -func (c *withMetrics) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "get") - return c.inner.Get(arg0, arg1, arg2) -} -func (c *withMetrics) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReportList, error) { - defer c.recorder.RecordWithContext(arg0, "list") - return c.inner.List(arg0, arg1) -} -func (c *withMetrics) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "patch") - return c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) -} -func (c *withMetrics) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "update") - return c.inner.Update(arg0, arg1, arg2) -} -func (c *withMetrics) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - defer c.recorder.RecordWithContext(arg0, "watch") - return c.inner.Watch(arg0, arg1) -} - -type withTracing struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface - client string - kind string -} - -func (c *withTracing) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Create"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Create"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Delete"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Delete"), - ), - ) - defer span.End() - } - ret0 := c.inner.Delete(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "DeleteCollection"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("DeleteCollection"), - ), - ) - defer span.End() - } - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Get"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Get"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReportList, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "List"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("List"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.List(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Patch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Patch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.BackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Update"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Update"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Watch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Watch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Watch(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} diff --git a/pkg/clients/kyverno/kyvernov1alpha2/client.generated.go b/pkg/clients/kyverno/kyvernov1alpha2/client.generated.go deleted file mode 100644 index 5baf913c04..0000000000 --- a/pkg/clients/kyverno/kyvernov1alpha2/client.generated.go +++ /dev/null @@ -1,92 +0,0 @@ -package client - -import ( - "github.com/go-logr/logr" - github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - admissionreports "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1alpha2/admissionreports" - backgroundscanreports "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1alpha2/backgroundscanreports" - clusteradmissionreports "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1alpha2/clusteradmissionreports" - clusterbackgroundscanreports "github.com/kyverno/kyverno/pkg/clients/kyverno/kyvernov1alpha2/clusterbackgroundscanreports" - "github.com/kyverno/kyverno/pkg/metrics" - "k8s.io/client-go/rest" -) - -func WithMetrics(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface, metrics metrics.MetricsConfigManager, clientType metrics.ClientType) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface { - return &withMetrics{inner, metrics, clientType} -} - -func WithTracing(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface, client string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface { - return &withTracing{inner, client} -} - -func WithLogging(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface, logger logr.Logger) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface { - return &withLogging{inner, logger} -} - -type withMetrics struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface - metrics metrics.MetricsConfigManager - clientType metrics.ClientType -} - -func (c *withMetrics) RESTClient() rest.Interface { - return c.inner.RESTClient() -} -func (c *withMetrics) AdmissionReports(namespace string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface { - recorder := metrics.NamespacedClientQueryRecorder(c.metrics, namespace, "AdmissionReport", c.clientType) - return admissionreports.WithMetrics(c.inner.AdmissionReports(namespace), recorder) -} -func (c *withMetrics) BackgroundScanReports(namespace string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface { - recorder := metrics.NamespacedClientQueryRecorder(c.metrics, namespace, "BackgroundScanReport", c.clientType) - return backgroundscanreports.WithMetrics(c.inner.BackgroundScanReports(namespace), recorder) -} -func (c *withMetrics) ClusterAdmissionReports() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface { - recorder := metrics.ClusteredClientQueryRecorder(c.metrics, "ClusterAdmissionReport", c.clientType) - return clusteradmissionreports.WithMetrics(c.inner.ClusterAdmissionReports(), recorder) -} -func (c *withMetrics) ClusterBackgroundScanReports() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface { - recorder := metrics.ClusteredClientQueryRecorder(c.metrics, "ClusterBackgroundScanReport", c.clientType) - return clusterbackgroundscanreports.WithMetrics(c.inner.ClusterBackgroundScanReports(), recorder) -} - -type withTracing struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface - client string -} - -func (c *withTracing) RESTClient() rest.Interface { - return c.inner.RESTClient() -} -func (c *withTracing) AdmissionReports(namespace string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface { - return admissionreports.WithTracing(c.inner.AdmissionReports(namespace), c.client, "AdmissionReport") -} -func (c *withTracing) BackgroundScanReports(namespace string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface { - return backgroundscanreports.WithTracing(c.inner.BackgroundScanReports(namespace), c.client, "BackgroundScanReport") -} -func (c *withTracing) ClusterAdmissionReports() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface { - return clusteradmissionreports.WithTracing(c.inner.ClusterAdmissionReports(), c.client, "ClusterAdmissionReport") -} -func (c *withTracing) ClusterBackgroundScanReports() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface { - return clusterbackgroundscanreports.WithTracing(c.inner.ClusterBackgroundScanReports(), c.client, "ClusterBackgroundScanReport") -} - -type withLogging struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.KyvernoV1alpha2Interface - logger logr.Logger -} - -func (c *withLogging) RESTClient() rest.Interface { - return c.inner.RESTClient() -} -func (c *withLogging) AdmissionReports(namespace string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.AdmissionReportInterface { - return admissionreports.WithLogging(c.inner.AdmissionReports(namespace), c.logger.WithValues("resource", "AdmissionReports").WithValues("namespace", namespace)) -} -func (c *withLogging) BackgroundScanReports(namespace string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.BackgroundScanReportInterface { - return backgroundscanreports.WithLogging(c.inner.BackgroundScanReports(namespace), c.logger.WithValues("resource", "BackgroundScanReports").WithValues("namespace", namespace)) -} -func (c *withLogging) ClusterAdmissionReports() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface { - return clusteradmissionreports.WithLogging(c.inner.ClusterAdmissionReports(), c.logger.WithValues("resource", "ClusterAdmissionReports")) -} -func (c *withLogging) ClusterBackgroundScanReports() github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface { - return clusterbackgroundscanreports.WithLogging(c.inner.ClusterBackgroundScanReports(), c.logger.WithValues("resource", "ClusterBackgroundScanReports")) -} diff --git a/pkg/clients/kyverno/kyvernov1alpha2/clusteradmissionreports/resource.generated.go b/pkg/clients/kyverno/kyvernov1alpha2/clusteradmissionreports/resource.generated.go deleted file mode 100644 index fb0a801e60..0000000000 --- a/pkg/clients/kyverno/kyvernov1alpha2/clusteradmissionreports/resource.generated.go +++ /dev/null @@ -1,337 +0,0 @@ -package resource - -import ( - context "context" - "fmt" - "time" - - "github.com/go-logr/logr" - github_com_kyverno_kyverno_api_kyverno_v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - "github.com/kyverno/kyverno/pkg/metrics" - "github.com/kyverno/kyverno/pkg/tracing" - "go.opentelemetry.io/otel/trace" - "go.uber.org/multierr" - k8s_io_apimachinery_pkg_apis_meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types" - k8s_io_apimachinery_pkg_watch "k8s.io/apimachinery/pkg/watch" -) - -func WithLogging(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface, logger logr.Logger) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface { - return &withLogging{inner, logger} -} - -func WithMetrics(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface, recorder metrics.Recorder) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface { - return &withMetrics{inner, recorder} -} - -func WithTracing(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface, client, kind string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface { - return &withTracing{inner, client, kind} -} - -type withLogging struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface - logger logr.Logger -} - -func (c *withLogging) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Create") - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Create failed", "duration", time.Since(start)) - } else { - logger.Info("Create done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "Delete") - ret0 := c.inner.Delete(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "Delete failed", "duration", time.Since(start)) - } else { - logger.Info("Delete done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "DeleteCollection") - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "DeleteCollection failed", "duration", time.Since(start)) - } else { - logger.Info("DeleteCollection done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Get") - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Get failed", "duration", time.Since(start)) - } else { - logger.Info("Get done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReportList, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "List") - ret0, ret1 := c.inner.List(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "List failed", "duration", time.Since(start)) - } else { - logger.Info("List done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Patch") - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Patch failed", "duration", time.Since(start)) - } else { - logger.Info("Patch done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Update") - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Update failed", "duration", time.Since(start)) - } else { - logger.Info("Update done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Watch") - ret0, ret1 := c.inner.Watch(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Watch failed", "duration", time.Since(start)) - } else { - logger.Info("Watch done", "duration", time.Since(start)) - } - return ret0, ret1 -} - -type withMetrics struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface - recorder metrics.Recorder -} - -func (c *withMetrics) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "create") - return c.inner.Create(arg0, arg1, arg2) -} -func (c *withMetrics) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete") - return c.inner.Delete(arg0, arg1, arg2) -} -func (c *withMetrics) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete_collection") - return c.inner.DeleteCollection(arg0, arg1, arg2) -} -func (c *withMetrics) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "get") - return c.inner.Get(arg0, arg1, arg2) -} -func (c *withMetrics) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReportList, error) { - defer c.recorder.RecordWithContext(arg0, "list") - return c.inner.List(arg0, arg1) -} -func (c *withMetrics) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "patch") - return c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) -} -func (c *withMetrics) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - defer c.recorder.RecordWithContext(arg0, "update") - return c.inner.Update(arg0, arg1, arg2) -} -func (c *withMetrics) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - defer c.recorder.RecordWithContext(arg0, "watch") - return c.inner.Watch(arg0, arg1) -} - -type withTracing struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterAdmissionReportInterface - client string - kind string -} - -func (c *withTracing) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Create"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Create"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Delete"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Delete"), - ), - ) - defer span.End() - } - ret0 := c.inner.Delete(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "DeleteCollection"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("DeleteCollection"), - ), - ) - defer span.End() - } - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Get"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Get"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReportList, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "List"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("List"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.List(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Patch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Patch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterAdmissionReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Update"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Update"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Watch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Watch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Watch(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} diff --git a/pkg/clients/kyverno/kyvernov1alpha2/clusterbackgroundscanreports/resource.generated.go b/pkg/clients/kyverno/kyvernov1alpha2/clusterbackgroundscanreports/resource.generated.go deleted file mode 100644 index 3e24df8a16..0000000000 --- a/pkg/clients/kyverno/kyvernov1alpha2/clusterbackgroundscanreports/resource.generated.go +++ /dev/null @@ -1,337 +0,0 @@ -package resource - -import ( - context "context" - "fmt" - "time" - - "github.com/go-logr/logr" - github_com_kyverno_kyverno_api_kyverno_v1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" - github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2 "github.com/kyverno/kyverno/pkg/client/clientset/versioned/typed/kyverno/v1alpha2" - "github.com/kyverno/kyverno/pkg/metrics" - "github.com/kyverno/kyverno/pkg/tracing" - "go.opentelemetry.io/otel/trace" - "go.uber.org/multierr" - k8s_io_apimachinery_pkg_apis_meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1" - k8s_io_apimachinery_pkg_types "k8s.io/apimachinery/pkg/types" - k8s_io_apimachinery_pkg_watch "k8s.io/apimachinery/pkg/watch" -) - -func WithLogging(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface, logger logr.Logger) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface { - return &withLogging{inner, logger} -} - -func WithMetrics(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface, recorder metrics.Recorder) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface { - return &withMetrics{inner, recorder} -} - -func WithTracing(inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface, client, kind string) github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface { - return &withTracing{inner, client, kind} -} - -type withLogging struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface - logger logr.Logger -} - -func (c *withLogging) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Create") - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Create failed", "duration", time.Since(start)) - } else { - logger.Info("Create done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "Delete") - ret0 := c.inner.Delete(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "Delete failed", "duration", time.Since(start)) - } else { - logger.Info("Delete done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - start := time.Now() - logger := c.logger.WithValues("operation", "DeleteCollection") - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if err := multierr.Combine(ret0); err != nil { - logger.Error(err, "DeleteCollection failed", "duration", time.Since(start)) - } else { - logger.Info("DeleteCollection done", "duration", time.Since(start)) - } - return ret0 -} -func (c *withLogging) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Get") - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Get failed", "duration", time.Since(start)) - } else { - logger.Info("Get done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReportList, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "List") - ret0, ret1 := c.inner.List(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "List failed", "duration", time.Since(start)) - } else { - logger.Info("List done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Patch") - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Patch failed", "duration", time.Since(start)) - } else { - logger.Info("Patch done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Update") - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Update failed", "duration", time.Since(start)) - } else { - logger.Info("Update done", "duration", time.Since(start)) - } - return ret0, ret1 -} -func (c *withLogging) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - start := time.Now() - logger := c.logger.WithValues("operation", "Watch") - ret0, ret1 := c.inner.Watch(arg0, arg1) - if err := multierr.Combine(ret1); err != nil { - logger.Error(err, "Watch failed", "duration", time.Since(start)) - } else { - logger.Info("Watch done", "duration", time.Since(start)) - } - return ret0, ret1 -} - -type withMetrics struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface - recorder metrics.Recorder -} - -func (c *withMetrics) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "create") - return c.inner.Create(arg0, arg1, arg2) -} -func (c *withMetrics) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete") - return c.inner.Delete(arg0, arg1, arg2) -} -func (c *withMetrics) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - defer c.recorder.RecordWithContext(arg0, "delete_collection") - return c.inner.DeleteCollection(arg0, arg1, arg2) -} -func (c *withMetrics) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "get") - return c.inner.Get(arg0, arg1, arg2) -} -func (c *withMetrics) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReportList, error) { - defer c.recorder.RecordWithContext(arg0, "list") - return c.inner.List(arg0, arg1) -} -func (c *withMetrics) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "patch") - return c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) -} -func (c *withMetrics) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - defer c.recorder.RecordWithContext(arg0, "update") - return c.inner.Update(arg0, arg1, arg2) -} -func (c *withMetrics) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - defer c.recorder.RecordWithContext(arg0, "watch") - return c.inner.Watch(arg0, arg1) -} - -type withTracing struct { - inner github_com_kyverno_kyverno_pkg_client_clientset_versioned_typed_kyverno_v1alpha2.ClusterBackgroundScanReportInterface - client string - kind string -} - -func (c *withTracing) Create(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.CreateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Create"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Create"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Create(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Delete(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Delete"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Delete"), - ), - ) - defer span.End() - } - ret0 := c.inner.Delete(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) DeleteCollection(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.DeleteOptions, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) error { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "DeleteCollection"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("DeleteCollection"), - ), - ) - defer span.End() - } - ret0 := c.inner.DeleteCollection(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret0) - } - return ret0 -} -func (c *withTracing) Get(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.GetOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Get"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Get"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Get(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) List(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReportList, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "List"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("List"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.List(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Patch(arg0 context.Context, arg1 string, arg2 k8s_io_apimachinery_pkg_types.PatchType, arg3 []uint8, arg4 k8s_io_apimachinery_pkg_apis_meta_v1.PatchOptions, arg5 ...string) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Patch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Patch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Patch(arg0, arg1, arg2, arg3, arg4, arg5...) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Update(arg0 context.Context, arg1 *github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, arg2 k8s_io_apimachinery_pkg_apis_meta_v1.UpdateOptions) (*github_com_kyverno_kyverno_api_kyverno_v1alpha2.ClusterBackgroundScanReport, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Update"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Update"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Update(arg0, arg1, arg2) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} -func (c *withTracing) Watch(arg0 context.Context, arg1 k8s_io_apimachinery_pkg_apis_meta_v1.ListOptions) (k8s_io_apimachinery_pkg_watch.Interface, error) { - var span trace.Span - if tracing.IsInSpan(arg0) { - arg0, span = tracing.StartChildSpan( - arg0, - "", - fmt.Sprintf("KUBE %s/%s/%s", c.client, c.kind, "Watch"), - trace.WithAttributes( - tracing.KubeClientGroupKey.String(c.client), - tracing.KubeClientKindKey.String(c.kind), - tracing.KubeClientOperationKey.String("Watch"), - ), - ) - defer span.End() - } - ret0, ret1 := c.inner.Watch(arg0, arg1) - if span != nil { - tracing.SetSpanStatus(span, ret1) - } - return ret0, ret1 -} diff --git a/pkg/controllers/report/aggregate/controller.go b/pkg/controllers/report/aggregate/controller.go index f5aefb3a56..99c7f72ac3 100644 --- a/pkg/controllers/report/aggregate/controller.go +++ b/pkg/controllers/report/aggregate/controller.go @@ -6,7 +6,6 @@ import ( "github.com/go-logr/logr" kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" "github.com/kyverno/kyverno/pkg/autogen" @@ -202,12 +201,12 @@ func (c *controller) createVapMap() (sets.Set[string], error) { return results, nil } -func (c *controller) findOwnedEphemeralReports(ctx context.Context, namespace, name string) ([]kyvernov1alpha2.ReportInterface, error) { +func (c *controller) findOwnedEphemeralReports(ctx context.Context, namespace, name string) ([]reportsv1.ReportInterface, error) { selector, err := reportutils.SelectorResourceUidEquals(types.UID(name)) if err != nil { return nil, err } - var results []kyvernov1alpha2.ReportInterface + var results []reportsv1.ReportInterface if namespace == "" { reports, err := c.client.ReportsV1().ClusterEphemeralReports().List(ctx, metav1.ListOptions{ LabelSelector: selector.String(), @@ -244,7 +243,7 @@ func (c *controller) findOwnedEphemeralReports(ctx context.Context, namespace, n return results, nil } -func (c *controller) getReport(ctx context.Context, namespace, name string) (kyvernov1alpha2.ReportInterface, error) { +func (c *controller) getReport(ctx context.Context, namespace, name string) (reportsv1.ReportInterface, error) { if namespace == "" { report, err := c.client.Wgpolicyk8sV1alpha2().ClusterPolicyReports().Get(ctx, name, metav1.GetOptions{}) if err != nil { @@ -282,7 +281,7 @@ func (c *controller) lookupEphemeralReportMeta(_ context.Context, namespace, nam } } -func (c *controller) getEphemeralReport(ctx context.Context, namespace, name string) (kyvernov1alpha2.ReportInterface, error) { +func (c *controller) getEphemeralReport(ctx context.Context, namespace, name string) (reportsv1.ReportInterface, error) { if namespace == "" { obj, err := c.client.ReportsV1().ClusterEphemeralReports().Get(ctx, name, metav1.GetOptions{}) if err != nil { @@ -380,7 +379,7 @@ func (c *controller) frontReconcile(ctx context.Context, logger logr.Logger, _, } func (c *controller) backReconcile(ctx context.Context, logger logr.Logger, _, namespace, name string) (err error) { - var reports []kyvernov1alpha2.ReportInterface + var reports []reportsv1.ReportInterface // get the report // if we don't have a report, we will eventually create one report, err := c.getReport(ctx, namespace, name) diff --git a/pkg/controllers/report/aggregate/utils.go b/pkg/controllers/report/aggregate/utils.go index 9deefc101f..5f256b97a0 100644 --- a/pkg/controllers/report/aggregate/utils.go +++ b/pkg/controllers/report/aggregate/utils.go @@ -5,8 +5,8 @@ import ( "errors" "time" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" + reportsv1 "github.com/kyverno/kyverno/api/reports/v1" "github.com/kyverno/kyverno/pkg/client/clientset/versioned" controllerutils "github.com/kyverno/kyverno/pkg/utils/controller" reportutils "github.com/kyverno/kyverno/pkg/utils/report" @@ -15,7 +15,7 @@ import ( "k8s.io/apimachinery/pkg/util/sets" ) -func mergeReports(policyMap map[string]policyMapEntry, vapMap sets.Set[string], accumulator map[string]policyreportv1alpha2.PolicyReportResult, uid types.UID, reports ...kyvernov1alpha2.ReportInterface) { +func mergeReports(policyMap map[string]policyMapEntry, vapMap sets.Set[string], accumulator map[string]policyreportv1alpha2.PolicyReportResult, uid types.UID, reports ...reportsv1.ReportInterface) { for _, report := range reports { if report == nil { continue @@ -45,14 +45,14 @@ func mergeReports(policyMap map[string]policyMapEntry, vapMap sets.Set[string], } } -func deleteReport(ctx context.Context, report kyvernov1alpha2.ReportInterface, client versioned.Interface) error { +func deleteReport(ctx context.Context, report reportsv1.ReportInterface, client versioned.Interface) error { if !controllerutils.IsManagedByKyverno(report) { return errors.New("can't delete report because it is not managed by kyverno") } return reportutils.DeleteReport(ctx, report, client) } -func updateReport(ctx context.Context, report kyvernov1alpha2.ReportInterface, client versioned.Interface) (kyvernov1alpha2.ReportInterface, error) { +func updateReport(ctx context.Context, report reportsv1.ReportInterface, client versioned.Interface) (reportsv1.ReportInterface, error) { if !controllerutils.IsManagedByKyverno(report) { return nil, errors.New("can't update report because it is not managed by kyverno") } diff --git a/pkg/controllers/report/background/controller.go b/pkg/controllers/report/background/controller.go index eb3fa59058..ff3d56c4d5 100644 --- a/pkg/controllers/report/background/controller.go +++ b/pkg/controllers/report/background/controller.go @@ -6,7 +6,6 @@ import ( "github.com/go-logr/logr" kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" kyvernov2beta1 "github.com/kyverno/kyverno/api/kyverno/v2beta1" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" @@ -220,7 +219,7 @@ func (c *controller) enqueueResources() { } } -func (c *controller) getReport(ctx context.Context, namespace, name string) (kyvernov1alpha2.ReportInterface, error) { +func (c *controller) getReport(ctx context.Context, namespace, name string) (reportsv1.ReportInterface, error) { if namespace == "" { return c.kyvernoClient.ReportsV1().ClusterEphemeralReports().Get(ctx, name, metav1.GetOptions{}) } else { @@ -444,7 +443,7 @@ func (c *controller) reconcileReport( return nil } -func (c *controller) storeReport(ctx context.Context, observed, desired kyvernov1alpha2.ReportInterface) error { +func (c *controller) storeReport(ctx context.Context, observed, desired reportsv1.ReportInterface) error { var err error hasReport := observed.GetResourceVersion() != "" wantsReport := desired != nil && len(desired.GetResults()) != 0 diff --git a/pkg/controllers/report/utils/utils.go b/pkg/controllers/report/utils/utils.go index 6b40818f9c..5d76f53b17 100644 --- a/pkg/controllers/report/utils/utils.go +++ b/pkg/controllers/report/utils/utils.go @@ -3,8 +3,8 @@ package utils import ( "github.com/go-logr/logr" kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" kyvernov2beta1 "github.com/kyverno/kyverno/api/kyverno/v2beta1" + reportsv1 "github.com/kyverno/kyverno/api/reports/v1" "github.com/kyverno/kyverno/pkg/autogen" kyvernov1listers "github.com/kyverno/kyverno/pkg/client/listers/kyverno/v1" kyvernov2beta1listers "github.com/kyverno/kyverno/pkg/client/listers/kyverno/v2beta1" @@ -63,7 +63,7 @@ func RemoveNonValidationPolicies(policies ...kyvernov1.PolicyInterface) []kyvern return validationPolicies } -func ReportsAreIdentical(before, after kyvernov1alpha2.ReportInterface) bool { +func ReportsAreIdentical(before, after reportsv1.ReportInterface) bool { if !datautils.DeepEqual(before.GetAnnotations(), after.GetAnnotations()) { return false } diff --git a/pkg/utils/report/copy.go b/pkg/utils/report/copy.go index b6a04ac9d2..6f16b619ba 100644 --- a/pkg/utils/report/copy.go +++ b/pkg/utils/report/copy.go @@ -1,21 +1,12 @@ package report import ( - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" ) -func DeepCopy(report kyvernov1alpha2.ReportInterface) kyvernov1alpha2.ReportInterface { +func DeepCopy(report reportsv1.ReportInterface) reportsv1.ReportInterface { switch v := report.(type) { - case *kyvernov1alpha2.AdmissionReport: - return v.DeepCopy() - case *kyvernov1alpha2.ClusterAdmissionReport: - return v.DeepCopy() - case *kyvernov1alpha2.BackgroundScanReport: - return v.DeepCopy() - case *kyvernov1alpha2.ClusterBackgroundScanReport: - return v.DeepCopy() case *policyreportv1alpha2.PolicyReport: return v.DeepCopy() case *policyreportv1alpha2.ClusterPolicyReport: diff --git a/pkg/utils/report/create.go b/pkg/utils/report/create.go index 697174285e..b6449b050b 100644 --- a/pkg/utils/report/create.go +++ b/pkg/utils/report/create.go @@ -4,27 +4,14 @@ import ( "context" "errors" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" "github.com/kyverno/kyverno/pkg/client/clientset/versioned" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) -func CreateReport(ctx context.Context, report kyvernov1alpha2.ReportInterface, client versioned.Interface) (kyvernov1alpha2.ReportInterface, error) { +func CreateReport(ctx context.Context, report reportsv1.ReportInterface, client versioned.Interface) (reportsv1.ReportInterface, error) { switch v := report.(type) { - case *kyvernov1alpha2.AdmissionReport: - report, err := client.KyvernoV1alpha2().AdmissionReports(report.GetNamespace()).Create(ctx, v, metav1.CreateOptions{}) - return report, err - case *kyvernov1alpha2.ClusterAdmissionReport: - report, err := client.KyvernoV1alpha2().ClusterAdmissionReports().Create(ctx, v, metav1.CreateOptions{}) - return report, err - case *kyvernov1alpha2.BackgroundScanReport: - report, err := client.KyvernoV1alpha2().BackgroundScanReports(report.GetNamespace()).Create(ctx, v, metav1.CreateOptions{}) - return report, err - case *kyvernov1alpha2.ClusterBackgroundScanReport: - report, err := client.KyvernoV1alpha2().ClusterBackgroundScanReports().Create(ctx, v, metav1.CreateOptions{}) - return report, err case *policyreportv1alpha2.PolicyReport: report, err := client.Wgpolicyk8sV1alpha2().PolicyReports(report.GetNamespace()).Create(ctx, v, metav1.CreateOptions{}) return report, err diff --git a/pkg/utils/report/delete.go b/pkg/utils/report/delete.go index 532cf6d0f2..fd62950bf5 100644 --- a/pkg/utils/report/delete.go +++ b/pkg/utils/report/delete.go @@ -4,23 +4,14 @@ import ( "context" "errors" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" "github.com/kyverno/kyverno/pkg/client/clientset/versioned" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) -func DeleteReport(ctx context.Context, report kyvernov1alpha2.ReportInterface, client versioned.Interface) error { +func DeleteReport(ctx context.Context, report reportsv1.ReportInterface, client versioned.Interface) error { switch v := report.(type) { - case *kyvernov1alpha2.AdmissionReport: - return client.KyvernoV1alpha2().AdmissionReports(report.GetNamespace()).Delete(ctx, v.GetName(), metav1.DeleteOptions{}) - case *kyvernov1alpha2.ClusterAdmissionReport: - return client.KyvernoV1alpha2().ClusterAdmissionReports().Delete(ctx, v.GetName(), metav1.DeleteOptions{}) - case *kyvernov1alpha2.BackgroundScanReport: - return client.KyvernoV1alpha2().BackgroundScanReports(report.GetNamespace()).Delete(ctx, v.GetName(), metav1.DeleteOptions{}) - case *kyvernov1alpha2.ClusterBackgroundScanReport: - return client.KyvernoV1alpha2().ClusterBackgroundScanReports().Delete(ctx, v.GetName(), metav1.DeleteOptions{}) case *policyreportv1alpha2.PolicyReport: return client.Wgpolicyk8sV1alpha2().PolicyReports(report.GetNamespace()).Delete(ctx, v.GetName(), metav1.DeleteOptions{}) case *policyreportv1alpha2.ClusterPolicyReport: diff --git a/pkg/utils/report/metadata.go b/pkg/utils/report/metadata.go index 5af083329f..0f4fba7c28 100644 --- a/pkg/utils/report/metadata.go +++ b/pkg/utils/report/metadata.go @@ -9,8 +9,8 @@ import ( "github.com/kyverno/kyverno/api/kyverno" kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" kyvernov2beta1 "github.com/kyverno/kyverno/api/kyverno/v2beta1" + reportsv1 "github.com/kyverno/kyverno/api/reports/v1" engineapi "github.com/kyverno/kyverno/pkg/engine/api" controllerutils "github.com/kyverno/kyverno/pkg/utils/controller" admissionregistrationv1alpha1 "k8s.io/api/admissionregistration/v1alpha1" @@ -110,11 +110,11 @@ func SetSource(obj metav1.Object, source string) { controllerutils.SetLabel(obj, LabelSource, source) } -func SetResourceUid(report kyvernov1alpha2.ReportInterface, uid types.UID) { +func SetResourceUid(report reportsv1.ReportInterface, uid types.UID) { controllerutils.SetLabel(report, LabelResourceUid, string(uid)) } -func SetResourceGVR(report kyvernov1alpha2.ReportInterface, gvr schema.GroupVersionResource) { +func SetResourceGVR(report reportsv1.ReportInterface, gvr schema.GroupVersionResource) { if gvr.Group != "" { controllerutils.SetLabel(report, LabelResourceGVR, gvr.Resource+"."+gvr.Version+"."+gvr.Group) } else { @@ -122,13 +122,13 @@ func SetResourceGVR(report kyvernov1alpha2.ReportInterface, gvr schema.GroupVers } } -func SetResourceGVK(report kyvernov1alpha2.ReportInterface, gvk schema.GroupVersionKind) { +func SetResourceGVK(report reportsv1.ReportInterface, gvk schema.GroupVersionKind) { controllerutils.SetLabel(report, LabelResourceGroup, gvk.Group) controllerutils.SetLabel(report, LabelResourceVersion, gvk.Version) controllerutils.SetLabel(report, LabelResourceKind, gvk.Kind) } -func SetResourceNamespaceAndName(report kyvernov1alpha2.ReportInterface, namespace, name string) { +func SetResourceNamespaceAndName(report reportsv1.ReportInterface, namespace, name string) { controllerutils.SetAnnotation(report, AnnotationResourceNamespace, namespace) controllerutils.SetAnnotation(report, AnnotationResourceName, name) } @@ -152,7 +152,7 @@ func CalculateResourceHash(resource unstructured.Unstructured) string { return hex.EncodeToString(hash[:]) } -func SetResourceVersionLabels(report kyvernov1alpha2.ReportInterface, resource *unstructured.Unstructured) { +func SetResourceVersionLabels(report reportsv1.ReportInterface, resource *unstructured.Unstructured) { if resource != nil { controllerutils.SetLabel(report, LabelResourceHash, CalculateResourceHash(*resource)) } else { @@ -160,15 +160,15 @@ func SetResourceVersionLabels(report kyvernov1alpha2.ReportInterface, resource * } } -func SetPolicyLabel(report kyvernov1alpha2.ReportInterface, policy engineapi.GenericPolicy) { +func SetPolicyLabel(report reportsv1.ReportInterface, policy engineapi.GenericPolicy) { controllerutils.SetLabel(report, PolicyLabel(policy), policy.GetResourceVersion()) } -func SetPolicyExceptionLabel(report kyvernov1alpha2.ReportInterface, exception kyvernov2beta1.PolicyException) { +func SetPolicyExceptionLabel(report reportsv1.ReportInterface, exception kyvernov2beta1.PolicyException) { controllerutils.SetLabel(report, PolicyExceptionLabel(exception), exception.GetResourceVersion()) } -func SetValidatingAdmissionPolicyBindingLabel(report kyvernov1alpha2.ReportInterface, binding admissionregistrationv1alpha1.ValidatingAdmissionPolicyBinding) { +func SetValidatingAdmissionPolicyBindingLabel(report reportsv1.ReportInterface, binding admissionregistrationv1alpha1.ValidatingAdmissionPolicyBinding) { controllerutils.SetLabel(report, ValidatingAdmissionPolicyBindingLabel(binding), binding.GetResourceVersion()) } diff --git a/pkg/utils/report/new.go b/pkg/utils/report/new.go index 3b47b7b9c6..e6d54ef1ca 100644 --- a/pkg/utils/report/new.go +++ b/pkg/utils/report/new.go @@ -1,7 +1,6 @@ package report import ( - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" engineapi "github.com/kyverno/kyverno/pkg/engine/api" @@ -13,8 +12,8 @@ import ( "k8s.io/apimachinery/pkg/types" ) -func NewAdmissionReport(namespace, name string, gvr schema.GroupVersionResource, gvk schema.GroupVersionKind, resource unstructured.Unstructured) kyvernov1alpha2.ReportInterface { - var report kyvernov1alpha2.ReportInterface +func NewAdmissionReport(namespace, name string, gvr schema.GroupVersionResource, gvk schema.GroupVersionKind, resource unstructured.Unstructured) reportsv1.ReportInterface { + var report reportsv1.ReportInterface if namespace == "" { report = &reportsv1.ClusterEphemeralReport{Spec: reportsv1.EphemeralReportSpec{}} } else { @@ -31,14 +30,14 @@ func NewAdmissionReport(namespace, name string, gvr schema.GroupVersionResource, return report } -func BuildAdmissionReport(resource unstructured.Unstructured, request admissionv1.AdmissionRequest, responses ...engineapi.EngineResponse) kyvernov1alpha2.ReportInterface { +func BuildAdmissionReport(resource unstructured.Unstructured, request admissionv1.AdmissionRequest, responses ...engineapi.EngineResponse) reportsv1.ReportInterface { report := NewAdmissionReport(resource.GetNamespace(), string(request.UID), schema.GroupVersionResource(request.Resource), schema.GroupVersionKind(request.Kind), resource) SetResponses(report, responses...) return report } -func NewBackgroundScanReport(namespace, name string, gvk schema.GroupVersionKind, owner string, uid types.UID) kyvernov1alpha2.ReportInterface { - var report kyvernov1alpha2.ReportInterface +func NewBackgroundScanReport(namespace, name string, gvk schema.GroupVersionKind, owner string, uid types.UID) reportsv1.ReportInterface { + var report reportsv1.ReportInterface if namespace == "" { report = &reportsv1.ClusterEphemeralReport{} } else { @@ -55,8 +54,8 @@ func NewBackgroundScanReport(namespace, name string, gvk schema.GroupVersionKind return report } -func NewPolicyReport(namespace, name string, scope *corev1.ObjectReference, results ...policyreportv1alpha2.PolicyReportResult) kyvernov1alpha2.ReportInterface { - var report kyvernov1alpha2.ReportInterface +func NewPolicyReport(namespace, name string, scope *corev1.ObjectReference, results ...policyreportv1alpha2.PolicyReportResult) reportsv1.ReportInterface { + var report reportsv1.ReportInterface if namespace == "" { report = &policyreportv1alpha2.ClusterPolicyReport{ Scope: scope, diff --git a/pkg/utils/report/results.go b/pkg/utils/report/results.go index ac21016dc1..f7d680e2f5 100644 --- a/pkg/utils/report/results.go +++ b/pkg/utils/report/results.go @@ -9,8 +9,8 @@ import ( "github.com/go-logr/logr" "github.com/kyverno/kyverno/api/kyverno" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" + reportsv1 "github.com/kyverno/kyverno/api/reports/v1" engineapi "github.com/kyverno/kyverno/pkg/engine/api" "github.com/kyverno/kyverno/pkg/pss/utils" corev1 "k8s.io/api/core/v1" @@ -209,13 +209,13 @@ func SplitResultsByPolicy(logger logr.Logger, results []policyreportv1alpha2.Pol return resultsMap } -func SetResults(report kyvernov1alpha2.ReportInterface, results ...policyreportv1alpha2.PolicyReportResult) { +func SetResults(report reportsv1.ReportInterface, results ...policyreportv1alpha2.PolicyReportResult) { SortReportResults(results) report.SetResults(results) report.SetSummary(CalculateSummary(results)) } -func SetResponses(report kyvernov1alpha2.ReportInterface, engineResponses ...engineapi.EngineResponse) { +func SetResponses(report reportsv1.ReportInterface, engineResponses ...engineapi.EngineResponse) { var ruleResults []policyreportv1alpha2.PolicyReportResult for _, result := range engineResponses { pol := result.Policy() diff --git a/pkg/utils/report/update.go b/pkg/utils/report/update.go index b7c88981e2..295fbb3b48 100644 --- a/pkg/utils/report/update.go +++ b/pkg/utils/report/update.go @@ -4,27 +4,14 @@ import ( "context" "errors" - kyvernov1alpha2 "github.com/kyverno/kyverno/api/kyverno/v1alpha2" policyreportv1alpha2 "github.com/kyverno/kyverno/api/policyreport/v1alpha2" reportsv1 "github.com/kyverno/kyverno/api/reports/v1" "github.com/kyverno/kyverno/pkg/client/clientset/versioned" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) -func UpdateReport(ctx context.Context, report kyvernov1alpha2.ReportInterface, client versioned.Interface) (kyvernov1alpha2.ReportInterface, error) { +func UpdateReport(ctx context.Context, report reportsv1.ReportInterface, client versioned.Interface) (reportsv1.ReportInterface, error) { switch v := report.(type) { - case *kyvernov1alpha2.AdmissionReport: - report, err := client.KyvernoV1alpha2().AdmissionReports(report.GetNamespace()).Update(ctx, v, metav1.UpdateOptions{}) - return report, err - case *kyvernov1alpha2.ClusterAdmissionReport: - report, err := client.KyvernoV1alpha2().ClusterAdmissionReports().Update(ctx, v, metav1.UpdateOptions{}) - return report, err - case *kyvernov1alpha2.BackgroundScanReport: - report, err := client.KyvernoV1alpha2().BackgroundScanReports(report.GetNamespace()).Update(ctx, v, metav1.UpdateOptions{}) - return report, err - case *kyvernov1alpha2.ClusterBackgroundScanReport: - report, err := client.KyvernoV1alpha2().ClusterBackgroundScanReports().Update(ctx, v, metav1.UpdateOptions{}) - return report, err case *policyreportv1alpha2.PolicyReport: report, err := client.Wgpolicyk8sV1alpha2().PolicyReports(report.GetNamespace()).Update(ctx, v, metav1.UpdateOptions{}) return report, err diff --git a/test/conformance/chainsaw/background-only/cluster-policy/no-admission-report/admission-report.yaml b/test/conformance/chainsaw/background-only/cluster-policy/no-admission-report/admission-report.yaml index a1e4032e41..edafe07432 100644 --- a/test/conformance/chainsaw/background-only/cluster-policy/no-admission-report/admission-report.yaml +++ b/test/conformance/chainsaw/background-only/cluster-policy/no-admission-report/admission-report.yaml @@ -1,5 +1,5 @@ -apiVersion: kyverno.io/v1alpha2 -kind: AdmissionReport +apiVersion: reports.kyverno.io/v1 +kind: EphemeralReport metadata: ownerReferences: - apiVersion: v1 diff --git a/test/conformance/chainsaw/background-only/policy/no-admission-report/admission-report.yaml b/test/conformance/chainsaw/background-only/policy/no-admission-report/admission-report.yaml index a1e4032e41..edafe07432 100644 --- a/test/conformance/chainsaw/background-only/policy/no-admission-report/admission-report.yaml +++ b/test/conformance/chainsaw/background-only/policy/no-admission-report/admission-report.yaml @@ -1,5 +1,5 @@ -apiVersion: kyverno.io/v1alpha2 -kind: AdmissionReport +apiVersion: reports.kyverno.io/v1 +kind: EphemeralReport metadata: ownerReferences: - apiVersion: v1