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