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

fix return values

This commit is contained in:
shivkumar dudhani 2019-09-04 09:56:44 -07:00
parent dee4eef44a
commit 5a6814a588

View file

@ -291,7 +291,11 @@ func MatchesResourceDescription(resource unstructured.Unstructured, rule kyverno
}
// Filtered NotEvaluate
func() bool {
if len(excludeEval) == 0 {
// nothing to exclude
return true
}
return func() bool {
for _, ret := range excludeEval {
if ret == Process {
return true
@ -299,7 +303,6 @@ func MatchesResourceDescription(resource unstructured.Unstructured, rule kyverno
}
return false
}()
return true
}
type Condition int