This is an automated email from the ASF dual-hosted git repository.
pcongiusti 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 af5a96ef1 Replaced echo-server image by multiarch
af5a96ef1 is described below
commit af5a96ef185ad420726b1ee4f077458190daca3c
Author: Lucie Krejcirova <[email protected]>
AuthorDate: Fri Apr 19 11:35:05 2024 +0200
Replaced echo-server image by multiarch
---
e2e/common/misc/pipe_with_image_test.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/e2e/common/misc/pipe_with_image_test.go
b/e2e/common/misc/pipe_with_image_test.go
index de47c8cda..525c83bb3 100644
--- a/e2e/common/misc/pipe_with_image_test.go
+++ b/e2e/common/misc/pipe_with_image_test.go
@@ -49,7 +49,7 @@ func TestPipeWithImage(t *testing.T) {
bindingID := "with-image-binding"
t.Run("run with initial image", func(t *testing.T) {
- expectedImage := "docker.io/jmalloc/echo-server:0.3.2"
+ expectedImage := "quay.io/fuse_qe/echo-server:0.3.2"
g.Expect(KamelBindWithID(t, ctx, operatorID, ns,
"my-own-timer-source", "my-own-log-sink", "--annotation",
"trait.camel.apache.org/container.image="+expectedImage, "--annotation",
"trait.camel.apache.org/jvm.enabled=false", "--annotation",
"trait.camel.apache.org/kamelets.enabled=false", "--annotation",
"trait.camel.apache.org/dependencies.enabled=false", "--annotation", "test=1",
"--name", bindingID).Execute()).To(Succeed())
@@ -68,7 +68,7 @@ func TestPipeWithImage(t *testing.T) {
})
t.Run("run with new image", func(t *testing.T) {
- expectedImage := "docker.io/jmalloc/echo-server:0.3.3"
+ expectedImage := "quay.io/fuse_qe/echo-server:0.3.3"
g.Expect(KamelBindWithID(t, ctx, operatorID, ns,
"my-own-timer-source", "my-own-log-sink", "--annotation",
"trait.camel.apache.org/container.image="+expectedImage, "--annotation",
"trait.camel.apache.org/jvm.enabled=false", "--annotation",
"trait.camel.apache.org/kamelets.enabled=false", "--annotation",
"trait.camel.apache.org/dependencies.enabled=false", "--annotation", "test=2",
"--name", bindingID).Execute()).To(Succeed())
g.Eventually(IntegrationGeneration(t, ctx, ns,
bindingID)).