This is an automated email from the ASF dual-hosted git repository.
gfournier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 233c71ef5 fix(e2e): Tekton test basic task permission failure with olm
install command
233c71ef5 is described below
commit 233c71ef524a395a875cd35a1cd7c29787e03380
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())
})