From dacb0b33e25d6594f43902c11dbe9d7fdab0ebf4 Mon Sep 17 00:00:00 2001 From: Ilya Zuyev Date: Thu, 14 Jan 2021 15:02:09 -0800 Subject: [PATCH] use k8s.gcr.io/echoserver[-arm]:1.8 for tests --- test/integration/functional_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index aa6d53f4a1..f55692eacb 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -804,10 +804,11 @@ func validateServiceCmd(ctx context.Context, t *testing.T, profile string) { }() var echoServerArg string + // k8s.gcr.io/echoserver is not multiarch if arm64Platform() { echoServerArg = "k8s.gcr.io/echoserver-arm:1.8" } else { - echoServerArg = "k8s.gcr.io/echoserver:1.10" + echoServerArg = "k8s.gcr.io/echoserver:1.8" } rr, err := Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "create", "deployment", "hello-node", "--image="+echoServerArg))