Skip to content

Commit

Permalink
[WIP] nerdctl: update to v2.0.0 (rc)
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
  • Loading branch information
AkihiroSuda committed Jun 26, 2024
1 parent aa15485 commit 49b9716
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 @@ -69,20 +69,20 @@ func defaultCPUType() CPUType {
}

func defaultContainerdArchives() []File {
const nerdctlVersion = "1.7.6"
const nerdctlVersion = "2.0.0-rc.0"
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:2c841e097fcfb5a1760bd354b3778cb695b44cd01f9f271c17507dc4a0b25606",
Digest: "", // WIP
},
{
Location: location("linux", "arm64"),
Arch: AARCH64,
Digest: "sha256:77c747f09853ee3d229d77e8de0dd3c85622537d82be57433dc1fca4493bab95",
Digest: "", // WIP
},
// No arm-v7
// No riscv64
Expand Down

0 comments on commit 49b9716

Please sign in to comment.