From 0aeb9f667a9490c6d38458f97538675d2a9e5177 Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Wed, 19 Aug 2020 15:11:21 -0700 Subject: [PATCH] return early in LCI if generated patches from policy mutation is nil --- pkg/kyverno/common/common.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/kyverno/common/common.go b/pkg/kyverno/common/common.go index 85425c5c8f..afe45f46cd 100644 --- a/pkg/kyverno/common/common.go +++ b/pkg/kyverno/common/common.go @@ -162,6 +162,10 @@ func PolicyHasVariables(policy v1.ClusterPolicy) bool { func MutatePolicy(policy *v1.ClusterPolicy, logger logr.Logger) (*v1.ClusterPolicy, error) { patches, _ := policymutation.GenerateJSONPatchesForDefaults(policy, logger) + if len(patches) == 0 { + return policy, nil + } + type jsonPatch struct { Path string `json:"path"` Op string `json:"op"`