1
0
Fork 0
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:
shuting 2019-11-19 10:26:38 -08:00 committed by GitHub
commit 6f22f334da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -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)

View file

@ -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())