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:
parent
6afd2e6f3a
commit
d07058e90f
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue