From 21ebeef745cafd1e736d1c7f65b4098cd17f142b Mon Sep 17 00:00:00 2001 From: Wei Fu Date: Thu, 8 Apr 2021 17:12:34 +0800 Subject: [PATCH] integration: use busybox:1.32.0 since latest is unavailable ```bash curl -s https://mirror.gcr.io//v2/library/busybox/tags/list | jq '[.tags ]' [ [ "1.26.2", "1.27.2", "1.28", "1.29", "1.29.2", "1.30", "1.30.1", "1.31", "1.31.0", "1.31.1", "1.32.0" ] ] ``` The latest is gone. I think we should setup image in github container registry for CI if possible. Signed-off-by: Wei Fu --- integration/client/client_unix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/client/client_unix_test.go b/integration/client/client_unix_test.go index 7fbf73b1e..822e6b3b7 100644 --- a/integration/client/client_unix_test.go +++ b/integration/client/client_unix_test.go @@ -32,7 +32,7 @@ const ( ) var ( - testImage = "mirror.gcr.io/library/busybox:latest" + testImage = "mirror.gcr.io/library/busybox:1.32.0" shortCommand = withProcessArgs("true") longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done") )