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"`