mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Bug - annotation inserted to podTemplate by auto-gen should reflect the policy name (#850)
* Added check for annotation inserted to podTemplate by auto-gen * skip reporting violation on pod which has annotation pod-policies.kyverno.io/autogen-applied * Revert Changes * typo fixed * Update condition for skiping the pods
This commit is contained in:
parent
8e1f6949ba
commit
0635df7b11
1 changed files with 7 additions and 2 deletions
|
@ -34,8 +34,13 @@ func (pc *PolicyController) processExistingResources(policy kyverno.ClusterPolic
|
|||
}
|
||||
|
||||
// skip reporting violation on pod which has annotation pod-policies.kyverno.io/autogen-applied
|
||||
if skipPodApplication(resource, logger) {
|
||||
continue
|
||||
ann := policy.GetAnnotations()
|
||||
if _, ok := ann[engine.PodTemplateAnnotation]; ok {
|
||||
if ann[engine.PodTemplateAnnotation] != "none" {
|
||||
if skipPodApplication(resource, logger) {
|
||||
continue
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// apply the policy on each
|
||||
|
|
Loading…
Add table
Reference in a new issue