From d1ce2cb25d32677e334e451472a4f5dfc66f0c12 Mon Sep 17 00:00:00 2001 From: Antonin Stefanutti Date: Mon, 31 Jan 2022 10:54:55 +0100 Subject: [PATCH] fix(e2e): Account for addressable-resolver ClusterRole --- e2e/common/kustomize/common.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/common/kustomize/common.go b/e2e/common/kustomize/common.go index adbb2ff99e..fee820ceb6 100644 --- a/e2e/common/kustomize/common.go +++ b/e2e/common/kustomize/common.go @@ -1,3 +1,4 @@ +//go:build integration // +build integration // To enable compilation of this file in Goland, go to "Settings -> Go -> Vendoring & Build Tags -> Custom Tags" and add "integration" @@ -46,7 +47,8 @@ const ( // camel-k-edit // camel-k-operator-custom-resource-definitions - ExpKubeClusterRoles = 2 + // camel-k-operator-bind-addressable-resolver + ExpKubeClusterRoles = 3 // camel-k-operator-openshift ExpOSPromoteRoles = 1 @@ -75,8 +77,6 @@ func ExecMake(t *testing.T, command *exec.Cmd) { } func Uninstall() { - // // Removes all items including CRDs and ClusterRoles - // Kamel("uninstall", "--olm=false", "--all").Execute() }