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

skipping gr status update (#1364)

This commit is contained in:
Pooja Singh 2020-12-08 01:34:46 +05:30 committed by GitHub
parent 6afd2e6f3a
commit d07058e90f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@ import (
"encoding/json"
"fmt"
"reflect"
"strings"
"time"
"github.com/go-logr/logr"
@ -47,6 +48,12 @@ func (c *Controller) processGR(gr *kyverno.GenerateRequest) error {
events := failedEvents(err, *gr, *resource)
c.eventGen.Add(events...)
// Need not update the stauts when policy doesn't apply on resource, because all the generate requests are removed by the cleanup controller
if err != nil && strings.Contains(err.Error(), "does not apply to resource") {
logger.V(4).Info("skipping updating status of generate request")
return nil
}
// 4 - Update Status
return updateStatus(c.statusControl, *gr, err, genResources)
}