mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Merge pull request #517 from nirmata/local_test
explicitly set resource version of policy violation when update
This commit is contained in:
commit
6f22f334da
2 changed files with 4 additions and 1 deletions
|
@ -277,7 +277,9 @@ func createPVNew(dclient *client.Client, pv kyverno.ClusterPolicyViolation, pvLi
|
|||
return nil
|
||||
}
|
||||
|
||||
// set newPv Name/ResourceVersion with curPv, as we are updating the resource itself
|
||||
pv.SetName(ePV.Name)
|
||||
pv.SetResourceVersion(ePV.ResourceVersion)
|
||||
_, err = pvInterface.ClusterPolicyViolations().Update(&pv)
|
||||
if err != nil {
|
||||
glog.Error(err)
|
||||
|
|
|
@ -97,8 +97,9 @@ func createNamespacedPV(dclient *dclient.Client, pvLister kyvernolister.Namespac
|
|||
continue
|
||||
}
|
||||
|
||||
// set newPv name with curPv, as we are updating the resource itself
|
||||
// set newPv Name/ResourceVersion with curPv, as we are updating the resource itself
|
||||
newPv.SetName(curPv.Name)
|
||||
newPv.SetResourceVersion(curPv.ResourceVersion)
|
||||
|
||||
// spec changed so update the policyviolation
|
||||
glog.V(4).Infof("creating new policy violation for policy %s & resource %s", curPv.Spec.Policy, curPv.Spec.ResourceSpec.ToKey())
|
||||
|
|
Loading…
Add table
Reference in a new issue