1
0
Fork 0
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:
Pooja Singh 2020-10-07 02:57:40 +05:30 committed by GitHub
parent caa1a17023
commit 7fc0eaaee3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}