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:
parent
cf5ec3df58
commit
db2f47b8b5
2 changed files with 2 additions and 6 deletions
|
@ -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":
|
||||
|
|
|
@ -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"},
|
||||
|
|
Loading…
Add table
Reference in a new issue