From 6d961f96736d7b471b3cdc47c76bd8bd58a6e3a9 Mon Sep 17 00:00:00 2001 From: wllenyj Date: Mon, 13 Sep 2021 19:04:06 +0800 Subject: [PATCH] CI: Switch to available latest images `mirror.gcr.io/library/busybox:1.32` is unavailable. ```console $ 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.29.3", "1.30", "1.30.1", "1.31", "1.31.0", "1.31.1", "1.32.0" ] ``` Signed-off-by: wllenyj --- 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 22df5f30b..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:1.32" + testImage = "mirror.gcr.io/library/busybox:1.32.0" shortCommand = withProcessArgs("true") longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done") )