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:
parent
9fcb4b7b10
commit
d68c4ea033
1 changed files with 4 additions and 0 deletions
|
@ -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{}
|
||||
|
|
Loading…
Add table
Reference in a new issue