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

skip generating events on empty rule response (#5158)

Signed-off-by: ShutingZhao <shuting@nirmata.com>

Signed-off-by: ShutingZhao <shuting@nirmata.com>
This commit is contained in:
shuting 2022-10-27 16:34:55 +08:00 committed by GitHub
parent fe7ea67f47
commit cf2b8dafa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,10 @@ func GenerateEvents(engineResponses []*response.EngineResponse, blocked bool) []
// - report skipped event on resource
for _, er := range engineResponses {
if er.IsEmpty() {
continue
}
if !er.IsSuccessful() {
for i, ruleResp := range er.PolicyResponse.Rules {
if ruleResp.Status == response.RuleStatusFail || ruleResp.Status == response.RuleStatusError {