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:
parent
fe7ea67f47
commit
cf2b8dafa6
1 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue