This is an automated email from the ASF dual-hosted git repository. pcongiusti 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 ed6d84952 Replaced echo-server image by multiarch ed6d84952 is described below commit ed6d8495216ada1ded58d00cec8a85e18e591f0c Author: Lucie Krejcirova <lfabr...@redhat.com> 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)).