This is an automated email from the ASF dual-hosted git repository.

astefanutti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit d1ce2cb25d32677e334e451472a4f5dfc66f0c12
Author: Antonin Stefanutti <anto...@stefanutti.fr>
AuthorDate: Mon Jan 31 10:54:55 2022 +0100

    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 adbb2ff..fee820c 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()
 }

Reply via email to