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

allow PSa validation with no exceptions (#4558)

Signed-off-by: Jim Bugwadia <jim@nirmata.com>

Co-authored-by: Prateek Pandey <prateek.pandey@nirmata.com>
This commit is contained in:
Jim Bugwadia 2022-09-10 09:58:10 -07:00 committed by GitHub
parent dfb566a458
commit c2b4a9434b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -260,14 +260,15 @@ func (v *validator) validate() *response.RuleResponse {
return ruleResponse
}
if v.podSecurity.Exclude != nil {
if v.podSecurity != nil {
if !isDeleteRequest(v.ctx) {
ruleResponse := v.validatePodSecurity()
return ruleResponse
}
}
v.log.V(2).Info("invalid validation rule: either patterns or deny conditions are expected")
v.log.V(2).Info("invalid validation rule: podSecurity, patterns, or deny expected")
return nil
}