Skip to content

Commit e494f74

Browse files
authored
Merge pull request #295 from AkihiroSuda/update-20211005
update nerdctl (v0.12.1), archlinux, debian
2 parents 3f5a756 + 0103f0e commit e494f74

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

examples/archlinux.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
arch: "x86_64"
33
images:
44
# NOTE: the image is periodically rotated, if you face 404, see https://mirror.pkgbuild.com/images/ to find the latest image.
5-
- location: "https://mirror.pkgbuild.com/images/v20210915.34349/Arch-Linux-x86_64-cloudimg-20210915.0.qcow2"
5+
- location: "https://mirror.pkgbuild.com/images/v20211001.35402/Arch-Linux-x86_64-cloudimg-20211001.0.qcow2"
66
arch: "x86_64"
7-
digest: "sha256:de8de860fec1efbae75418948f5bc7873ca53a2f4c31b0e9306facc94fffd5a8"
7+
digest: "sha256:bee4dbb88c2e9e2306cf1de92e40797b892c937557e5986a65153e16f9037878"
88
mounts:
99
- location: "~"
1010
writable: false

examples/debian.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
images:
2-
- location: "https://cloud.debian.org/images/cloud/bullseye/daily/20210916-767/debian-11-generic-amd64-daily-20210916-767.qcow2"
2+
- location: "https://cloud.debian.org/images/cloud/bullseye/daily/20211005-786/debian-11-generic-amd64-daily-20211005-786.qcow2"
33
arch: "x86_64"
4-
digest: "sha512:ed3a2631488eb4b31eed3757f936928322f2e6bc5717844173b41db0a77847ef9602e715fd16faf0b46aba2ff990d29cc79167d3940fbd1fdd9161866dee90ff"
5-
- location: "https://cloud.debian.org/images/cloud/bullseye/daily/20210916-767/debian-11-generic-arm64-daily-20210916-767.qcow2"
4+
digest: "sha512:e1f3e543774ca428c1f308d8636330d2371ced4c2042bc8fbce2048757907d5fa32663c2f6afcd4ed8efc0cba1c45c2a2d8556cd2b4f17f06517ad5c3a3c52b8"
5+
- location: "https://cloud.debian.org/images/cloud/bullseye/daily/20211005-786/debian-11-generic-arm64-daily-20211005-786.qcow2"
66
arch: "aarch64"
7-
digest: "sha512:8cb39915c402956b1e3ffd0c4e16d4cae61ed6521e65b3c578d8f099bf710297a5c51881e6ca7d0840f0cc2b4417c663a0e67c25695d560a2dabde58f4e6bd7d"
7+
digest: "sha512:9ff3b67aac3aac605bdcc8ec0d4b12ac73b6102c4878ca4ba338978a16bf76db67a929efb2e2a5b03729bc6880b19914c1d4385f38903a352f523c03353c974f"
88
mounts:
99
- location: "~"
1010
writable: false

pkg/limayaml/defaults.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ import (
1212
)
1313

1414
func defaultContainerdArchives() []File {
15-
const nerdctlVersion = "0.12.0"
15+
const nerdctlVersion = "0.12.1"
1616
location := func(goarch string) string {
1717
return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-linux-" + goarch + ".tar.gz"
1818
}
1919
return []File{
2020
{
2121
Location: location("amd64"),
2222
Arch: X8664,
23-
Digest: "sha256:7789800cfdd19fa9eccadb5e4a911e4ba759799ad9ec0b7929c983b9d149bc98",
23+
Digest: "sha256:fe9e7e63554795fc4b984c178609a2a9dffa6d69925356f919b8fa30a2f36210",
2424
},
2525
{
2626
Location: location("arm64"),
2727
Arch: AARCH64,
28-
Digest: "sha256:ebb05e22ac6a3c25ac88ca4f747feed89bfae8e447a626d0fedf3b4f40ac3303",
28+
Digest: "sha256:47fb7f904cd541c5761ae9f4fd385bfa93fa4b36a963a5a54f7c8df647f5d6fc",
2929
},
3030
}
3131
}

0 commit comments

Comments
 (0)