Skip to content

Commit cd33c00

Browse files
committed
CI: Switch to available latest images
`mirror.gcr.io/library/busybox:1.32.0` 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", "latest" ] ``` `mirror.gcr.io/library/alpine:3.13` is unavailable. ```console $ curl -s https://mirror.gcr.io//v2/library/alpine/tags/list | jq '.tags' [ "20200428", "3", "3.10", "3.11", "3.12", "3.12.0", "3.12.1", "3.13.5", "3.3", "3.4", "3.6", "3.7", "3.8", "3.9", "latest" ] ``` Signed-off-by: Kohei Tokunaga <ktokunaga.mail@gmail.com>
1 parent 11304a4 commit cd33c00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration/client/client_unix_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const (
3232
)
3333

3434
var (
35-
testImage = "mirror.gcr.io/library/busybox:1.32.0"
35+
testImage = "mirror.gcr.io/library/busybox:1.32"
3636
shortCommand = withProcessArgs("true")
3737
longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done")
3838
)

integration/client/container_linux_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import (
5555
"golang.org/x/sys/unix"
5656
)
5757

58-
const testUserNSImage = "mirror.gcr.io/library/alpine:3.13"
58+
const testUserNSImage = "mirror.gcr.io/library/alpine:3.13.5"
5959

6060
// TestRegressionIssue4769 verifies the number of task exit events.
6161
//

0 commit comments

Comments
 (0)