Skip to content

Commit

Permalink
CI: Switch to available latest images
Browse files Browse the repository at this point in the history
`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>
  • Loading branch information
ktock committed Jun 21, 2021
1 parent 11304a4 commit cd33c00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/client/client_unix_test.go
Expand Up @@ -32,7 +32,7 @@ const (
)

var (
testImage = "mirror.gcr.io/library/busybox:1.32.0"
testImage = "mirror.gcr.io/library/busybox:1.32"
shortCommand = withProcessArgs("true")
longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done")
)
Expand Down
2 changes: 1 addition & 1 deletion integration/client/container_linux_test.go
Expand Up @@ -55,7 +55,7 @@ import (
"golang.org/x/sys/unix"
)

const testUserNSImage = "mirror.gcr.io/library/alpine:3.13"
const testUserNSImage = "mirror.gcr.io/library/alpine:3.13.5"

// TestRegressionIssue4769 verifies the number of task exit events.
//
Expand Down

0 comments on commit cd33c00

Please sign in to comment.