Skip to content

Commit 4439c58

Browse files
committed
nerdctl: update to v1.2.1
https://github.com/containerd/nerdctl/releases/tag/v1.2.1 https://github.com/containerd/nerdctl/releases/tag/v1.2.0 [Upgrade notice] containerd <= v1.6.16 creates `/etc/cni` with permission 0700 when running in the rootful mode. This causes an error like `open /etc/cni/tuning/allowlist.conf: permission denied` for CNI tuning plugin >= v1.2.0 when running in the rootless mode. Run `lima sudo chmod 0755 /etc/cni` to dismiss this error. Signed-off-by: Akihiro Suda <[email protected]>
1 parent 063d4f9 commit 4439c58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/limayaml/defaults.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ const (
3030
)
3131

3232
func defaultContainerdArchives() []File {
33-
const nerdctlVersion = "1.1.0"
33+
const nerdctlVersion = "1.2.1"
3434
location := func(goarch string) string {
3535
return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-linux-" + goarch + ".tar.gz"
3636
}
3737
return []File{
3838
{
3939
Location: location("amd64"),
4040
Arch: X8664,
41-
Digest: "sha256:5440c7b3af63df2ad2c98e185e06a27b4a21eea334b05408e84f8502251d9459",
41+
Digest: "sha256:e8a3e40d442c566ee494375a4c563121da69d7c7837f50f4a3a171742757b36c",
4242
},
4343
{
4444
Location: location("arm64"),
4545
Arch: AARCH64,
46-
Digest: "sha256:3b613a1be5a24460c44bb93a3609b790ada94e06efd1a86467d45bec7da8b449",
46+
Digest: "sha256:1334bedbc9704994795bae88138807bd74e8bf2a23717491af5b8ae3aebebcda",
4747
},
4848
// No riscv64
4949
}

0 commit comments

Comments
 (0)