From bc981f9a11b3c844356d5b0cf0304374c8f7bf85 Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Wed, 20 May 2020 13:42:23 -0700 Subject: [PATCH] fix 869 --- pkg/policy/existing.go | 4 ++-- pkg/webhooks/mutation.go | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pkg/policy/existing.go b/pkg/policy/existing.go index 44850b4df0..75e7dfcbe4 100644 --- a/pkg/policy/existing.go +++ b/pkg/policy/existing.go @@ -35,8 +35,8 @@ func (pc *PolicyController) processExistingResources(policy kyverno.ClusterPolic // skip reporting violation on pod which has annotation pod-policies.kyverno.io/autogen-applied ann := policy.GetAnnotations() - if _, ok := ann[engine.PodTemplateAnnotation]; ok { - if ann[engine.PodTemplateAnnotation] != "none" { + if annValue, ok := ann[engine.PodControllersAnnotation]; ok { + if annValue != "none" { if skipPodApplication(resource, logger) { continue } diff --git a/pkg/webhooks/mutation.go b/pkg/webhooks/mutation.go index 4ad5b35e94..d3155d2b74 100644 --- a/pkg/webhooks/mutation.go +++ b/pkg/webhooks/mutation.go @@ -45,9 +45,6 @@ func (ws *WebhookServer) HandleMutation( policyContext.Policy = policy engineResponse := engine.Mutate(policyContext) - if engineResponse.PolicyResponse.RulesAppliedCount <= 0 { - continue - } engineResponses = append(engineResponses, engineResponse) ws.statusListener.Send(mutateStats{resp: engineResponse})