Skip to content

Commit

Permalink
[WIP] nerdctl: update to v2.0.0 (beta)
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Apr 9, 2024
1 parent 29c5088 commit 1d38fc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/limayaml/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@ const (
var IPv4loopback1 = net.IPv4(127, 0, 0, 1)

func defaultContainerdArchives() []File {
const nerdctlVersion = "1.7.5"
const nerdctlVersion = "2.0.0-beta.4"
location := func(goos string, goarch string) string {
return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-" + goos + "-" + goarch + ".tar.gz"
}
return []File{
{
Location: location("linux", "amd64"),
Arch: X8664,
Digest: "sha256:adb246a4ef15b8f3d7eed4c6b61173014a6cf343e43ad95eae2087b454dcae5d",
Digest: "", // WIP
},
{
Location: location("linux", "arm64"),
Arch: AARCH64,
Digest: "sha256:ff38142440b4705e12782b7a71074849e712a42ccb69a11306343a8d9f81d8ab",
Digest: "", // WIP
},
// No arm-v7
// No riscv64
Expand Down

0 comments on commit 1d38fc7

Please sign in to comment.