mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
3c0b7856eb
* fix: background scan events Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * remove old code Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * remove old code Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix config Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * cleanup Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * cleanup Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * events Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
package policy
|
|
|
|
import (
|
|
kyvernov1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
// check if all slice elements are same
|
|
func isMatchResourcesAllValid(rule kyvernov1.Rule) bool {
|
|
var kindlist []string
|
|
for _, all := range rule.MatchResources.All {
|
|
kindlist = append(kindlist, all.Kinds...)
|
|
}
|
|
|
|
if len(kindlist) == 0 {
|
|
return false
|
|
}
|
|
|
|
for i := 1; i < len(kindlist); i++ {
|
|
if kindlist[i] != kindlist[0] {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func fetchUniqueKinds(rule kyvernov1.Rule) []string {
|
|
var kindlist []string
|
|
|
|
kindlist = append(kindlist, rule.MatchResources.Kinds...)
|
|
|
|
for _, all := range rule.MatchResources.Any {
|
|
kindlist = append(kindlist, all.Kinds...)
|
|
}
|
|
|
|
if isMatchResourcesAllValid(rule) {
|
|
for _, all := range rule.MatchResources.All {
|
|
kindlist = append(kindlist, all.Kinds...)
|
|
}
|
|
}
|
|
|
|
inResult := make(map[string]bool)
|
|
var result []string
|
|
for _, kind := range kindlist {
|
|
if _, ok := inResult[kind]; !ok {
|
|
inResult[kind] = true
|
|
result = append(result, kind)
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func convertlist(ulists []unstructured.Unstructured) []*unstructured.Unstructured {
|
|
var result []*unstructured.Unstructured
|
|
for _, list := range ulists {
|
|
result = append(result, list.DeepCopy())
|
|
}
|
|
return result
|
|
}
|