mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
24 lines
416 B
Go
24 lines
416 B
Go
package match
|
|
|
|
import (
|
|
"github.com/kyverno/kyverno/ext/wildcard"
|
|
)
|
|
|
|
func CheckAnnotations(expected map[string]string, actual map[string]string) bool {
|
|
if len(expected) == 0 {
|
|
return true
|
|
}
|
|
for k, v := range expected {
|
|
match := false
|
|
for k1, v1 := range actual {
|
|
if wildcard.Match(k, k1) && wildcard.Match(v, v1) {
|
|
match = true
|
|
break
|
|
}
|
|
}
|
|
if !match {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|