mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
added condition for exclude selector (#1169)
* added exclude selector condition * small fix
This commit is contained in:
parent
caa1a17023
commit
7fc0eaaee3
1 changed files with 7 additions and 1 deletions
|
@ -4,10 +4,11 @@ import (
|
|||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/nirmata/kyverno/pkg/kyverno/common"
|
||||
"reflect"
|
||||
"strings"
|
||||
|
||||
"github.com/nirmata/kyverno/pkg/kyverno/common"
|
||||
|
||||
"github.com/minio/minio/pkg/wildcard"
|
||||
|
||||
"github.com/nirmata/kyverno/pkg/openapi"
|
||||
|
@ -289,6 +290,11 @@ func doesMatchAndExcludeConflict(rule kyverno.Rule) bool {
|
|||
}
|
||||
}
|
||||
|
||||
if (rule.MatchResources.ResourceDescription.Selector == nil && rule.ExcludeResources.ResourceDescription.Selector != nil) ||
|
||||
(rule.MatchResources.ResourceDescription.Selector != nil && rule.ExcludeResources.ResourceDescription.Selector == nil) {
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue