From e50a28e808f1436a5b92c6200b7103c2453fb57b Mon Sep 17 00:00:00 2001 From: Lucie Krejcirova Date: Fri, 19 Apr 2024 11:35:05 +0200 Subject: [PATCH] Replaced echo-server image by multiarch (cherry picked from commit apache/camel-k@af5a96ef1) --- 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 de47c8cdab..525c83bb3f 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)).