From cca5dd31b61aecc8aa3634ade5cd8cb2e01a01e2 Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Mon, 13 Jan 2020 10:15:52 -0800 Subject: [PATCH] pass in original resource to validation if patches from mutation is nil --- pkg/webhooks/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/webhooks/common.go b/pkg/webhooks/common.go index 22cbc2084d..d8c57ed7f2 100644 --- a/pkg/webhooks/common.go +++ b/pkg/webhooks/common.go @@ -6,8 +6,8 @@ import ( "github.com/golang/glog" kyverno "github.com/nirmata/kyverno/pkg/api/kyverno/v1" - engineutils "github.com/nirmata/kyverno/pkg/engine/utils" "github.com/nirmata/kyverno/pkg/engine/response" + engineutils "github.com/nirmata/kyverno/pkg/engine/utils" "k8s.io/api/admission/v1beta1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime/schema" @@ -92,7 +92,7 @@ const ( func processResourceWithPatches(patch []byte, resource []byte) []byte { if patch == nil { - return nil + return resource } resource, err := engineutils.ApplyPatchNew(resource, patch)