1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix: allow mutation of policy reports (#8080)

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
Charles-Edouard Brétéché 2023-08-22 11:44:25 +02:00 committed by GitHub
parent cf5ec3df58
commit db2f47b8b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View file

@ -2,10 +2,6 @@ package utils
func ExcludeKyvernoResources(kind string) bool {
switch kind {
case "ClusterPolicyReport":
return true
case "PolicyReport":
return true
case "AdmissionReport":
return true
case "ClusterAdmissionReport":

View file

@ -25,11 +25,11 @@ func TestExcludeKyvernoResources(t *testing.T) {
}, {
name: "ClusterPolicyReport",
args: args{"ClusterPolicyReport"},
want: true,
want: false,
}, {
name: "PolicyReport",
args: args{"PolicyReport"},
want: true,
want: false,
}, {
name: "AdmissionReport",
args: args{"AdmissionReport"},