From 4397e7d37bae8bed2664083c9c1d97b070b820a4 Mon Sep 17 00:00:00 2001 From: Alexey Ermakov Date: Wed, 10 Apr 2019 11:54:51 +0200 Subject: [PATCH] Enable compliance checker by default Signed-off-by: Alexey Ermakov --- cluster/config-defaults.yaml | 2 +- test/e2e/apiserver.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/config-defaults.yaml b/cluster/config-defaults.yaml index 065f5778d9..c770f1bb93 100644 --- a/cluster/config-defaults.yaml +++ b/cluster/config-defaults.yaml @@ -62,7 +62,7 @@ image_policy: "trusted" {{else}} image_policy: "dev" {{end}} -compliance_checker_enabled: "false" +compliance_checker_enabled: "true" # Egress configuration nat_cidr_blocks: "172.31.64.0/28,172.31.64.16/28,172.31.64.32/28" diff --git a/test/e2e/apiserver.go b/test/e2e/apiserver.go index 1711fa667a..0ccb2e0fbb 100644 --- a/test/e2e/apiserver.go +++ b/test/e2e/apiserver.go @@ -69,7 +69,7 @@ var _ = framework.KubeDescribe("API Server webhook tests", func() { }) It("Should not allow deployment using not trusted image [Image-Webhook] [Non-Compliant] [Zalando]", func() { - tag := "bc1a6fe-nottrusted" + tag := "bc1a6fe-nottrusted2" nameprefix := "image-policy-webhook-test-non-compliant" podname := fmt.Sprintf("image-webhook-policy-test-pod-%s", tag)