From b319a816c5708be945ff89ba5b72926f49dbade1 Mon Sep 17 00:00:00 2001 From: shuting Date: Tue, 1 Sep 2020 09:38:49 -0700 Subject: [PATCH] Fix build (#1092) * add watch policy to clusterrole kyverno:customresources * fix build --- 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 0d994499b6..a89afdcaa8 100644 --- a/pkg/kyverno/common/common.go +++ b/pkg/kyverno/common/common.go @@ -1,8 +1,11 @@ package common import ( + "bufio" + "bytes" "encoding/json" "fmt" + "io" "io/ioutil" "os" "path/filepath" @@ -10,6 +13,7 @@ import ( "strings" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" + "k8s.io/apimachinery/pkg/util/yaml" yaml_v2 "sigs.k8s.io/yaml" jsonpatch "github.com/evanphx/json-patch"