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 <akihiro.suda.cz@hco.ntt.co.jp>
  • Loading branch information
AkihiroSuda committed Feb 2, 2024
1 parent f4a8911 commit df10f7a
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 @@ -38,20 +38,20 @@ const (
)

func defaultContainerdArchives() []File {
const nerdctlVersion = "1.7.3"
const nerdctlVersion = "2.0.0-beta.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:f373aab78f04379557285590ee60ed953d12c9a60e08a52ba159004cf5e3d212",
Digest: "", // WIP
},
{
Location: location("linux", "arm64"),
Arch: AARCH64,
Digest: "sha256:4bf3e05c7203a1b86c84a506d022f7f4d2727143c8031cd5e4b78ef03f0fdcda",
Digest: "", // WIP
},
// No arm-v7
// No riscv64
Expand Down

0 comments on commit df10f7a

Please sign in to comment.