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:
parent
dee4eef44a
commit
5a6814a588
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue