This is an automated email from the ASF dual-hosted git repository.
gfournier pushed a commit to branch release-2.3.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/release-2.3.x by this push:
new 6820cf717 fix(e2e): Tekton test basic task permission failure with olm
install command
6820cf717 is described below
commit 6820cf71712d5e83f82409b6fbd33dc5f83cef7f
Author: Gaelle Fournier <[email protected]>
AuthorDate: Tue May 14 16:46:19 2024 +0200
fix(e2e): Tekton test basic task permission failure with olm install command
---
e2e/advanced/tekton_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/e2e/advanced/tekton_test.go b/e2e/advanced/tekton_test.go
index 6edb89744..484dc91fd 100644
--- a/e2e/advanced/tekton_test.go
+++ b/e2e/advanced/tekton_test.go
@@ -42,7 +42,7 @@ func TestTektonLikeBehavior(t *testing.T) {
g.Expect(CreateOperatorRoleBinding(t, ctx, ns)).To(Succeed())
g.Eventually(OperatorPod(t, ctx, ns)).Should(BeNil())
- g.Expect(CreateKamelPod(t, ctx, ns, "tekton-task", "install",
"--skip-cluster-setup", "--force")).To(Succeed())
+ g.Expect(CreateKamelPod(t, ctx, ns, "tekton-task", "install",
"--skip-cluster-setup", "--olm=false", "--force")).To(Succeed())
g.Eventually(OperatorPod(t, ctx, ns)).ShouldNot(BeNil())
})