File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ if [[ -n ${CHECKS["containerd-user"]} ]]; then
168
168
limactl shell " $NAME " nerdctl info
169
169
# Use GHCR to avoid hitting Docker Hub rate limit
170
170
nginx_image=" ghcr.io/stargz-containers/nginx:1.19-alpine-org"
171
- limactl shell " $NAME " sh -ec " nerdctl pull ${nginx_image} >/dev/null "
171
+ limactl shell " $NAME " nerdctl pull --quiet ${nginx_image}
172
172
limactl shell " $NAME " nerdctl run -d --name nginx -p 127.0.0.1:8080:80 ${nginx_image}
173
173
174
174
timeout 3m bash -euxc " until curl -f --retry 30 --retry-connrefused http://127.0.0.1:8080; do sleep 3; done"
@@ -184,7 +184,7 @@ if [[ -n ${CHECKS["containerd-user"]} ]]; then
184
184
defer " rm -rf \" $hometmp \" "
185
185
set -x
186
186
alpine_image=" ghcr.io/containerd/alpine:3.14.0"
187
- limactl shell " $NAME " nerdctl pull ${alpine_image}
187
+ limactl shell " $NAME " nerdctl pull --quiet ${alpine_image}
188
188
echo " random-content-${RANDOM} " > " $hometmp /random"
189
189
expected=" $( cat " $hometmp /random" ) "
190
190
got=" $( limactl shell " $NAME " nerdctl run --rm -v " $hometmp /random" :/mnt/foo ${alpine_image} cat /mnt/foo) "
Original file line number Diff line number Diff line change @@ -21,20 +21,20 @@ import (
21
21
)
22
22
23
23
func defaultContainerdArchives () []File {
24
- const nerdctlVersion = "0.14 .0"
24
+ const nerdctlVersion = "0.15 .0"
25
25
location := func (goarch string ) string {
26
26
return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-linux-" + goarch + ".tar.gz"
27
27
}
28
28
return []File {
29
29
{
30
30
Location : location ("amd64" ),
31
31
Arch : X8664 ,
32
- Digest : "sha256:3423cb589bb5058ff9ed55f6823adec1299fe2e576612fc6f706fe07eddd398b " ,
32
+ Digest : "sha256:ca40d99d257e69f0220bb1cbdab1b602032692f45f713c901f328d2f4e3c12b3 " ,
33
33
},
34
34
{
35
35
Location : location ("arm64" ),
36
36
Arch : AARCH64 ,
37
- Digest : "sha256:32898576fa89392d1af8c21ff3854c0f54d2c66c0de87598be813f25051366e5 " ,
37
+ Digest : "sha256:dd8639ce868bab394467576f55375c4b40a8288badb579d2e30c3487da6004ea " ,
38
38
},
39
39
}
40
40
}
You can’t perform that action at this time.
0 commit comments