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

check for annotattions for resource updates only

This commit is contained in:
shivkumar dudhani 2019-07-19 13:53:36 -07:00
parent 9fcb4b7b10
commit d68c4ea033

View file

@ -105,6 +105,10 @@ func toBlock(pis []*info.PolicyInfo) bool {
}
func checkIfOnlyAnnotationsUpdate(request *v1beta1.AdmissionRequest) bool {
// process only if its for existing resources
if request.Operation != v1beta1.Update {
return false
}
// updated resoruce
obj := request.Object
objUnstr := unstructured.Unstructured{}