From e622411bffd8d560e16056348c40b408eaf8ae21 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 1 Feb 2024 08:55:08 +0900 Subject: [PATCH 1/5] nerdctl: update to v1.7.3 Signed-off-by: Akihiro Suda --- pkg/limayaml/defaults.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/limayaml/defaults.go b/pkg/limayaml/defaults.go index 22d3a44813d..3fade5579fa 100644 --- a/pkg/limayaml/defaults.go +++ b/pkg/limayaml/defaults.go @@ -38,7 +38,7 @@ const ( ) func defaultContainerdArchives() []File { - const nerdctlVersion = "1.7.2" + const nerdctlVersion = "1.7.3" location := func(goos string, goarch string) string { return "https://github.com/containerd/nerdctl/releases/download/v" + nerdctlVersion + "/nerdctl-full-" + nerdctlVersion + "-" + goos + "-" + goarch + ".tar.gz" } @@ -46,12 +46,12 @@ func defaultContainerdArchives() []File { { Location: location("linux", "amd64"), Arch: X8664, - Digest: "sha256:5ea4524ff346000bb32ef1d9fb8c4b8e809fbff69260d179218d7c308cc2aa99", + Digest: "sha256:f373aab78f04379557285590ee60ed953d12c9a60e08a52ba159004cf5e3d212", }, { Location: location("linux", "arm64"), Arch: AARCH64, - Digest: "sha256:3d6f256181005a1b612cd340c8eb84c2b9218a0df040e59e300d6168b0701de2", + Digest: "sha256:4bf3e05c7203a1b86c84a506d022f7f4d2727143c8031cd5e4b78ef03f0fdcda", }, // No arm-v7 // No riscv64 From 719dde926be356bcc39faa7bc7eca99bbe0eb534 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 1 Feb 2024 09:00:29 +0900 Subject: [PATCH 2/5] templates: update Ubuntu 23.10 to release-20240125 Signed-off-by: Akihiro Suda --- examples/buildkit.yaml | 8 ++++---- examples/default.yaml | 8 ++++---- examples/experimental/9p.yaml | 8 ++++---- examples/experimental/armv7l.yaml | 4 ++-- examples/experimental/riscv64.yaml | 4 ++-- examples/experimental/virtiofs-linux.yaml | 8 ++++---- examples/experimental/vnc.yaml | 8 ++++---- examples/ubuntu.yaml | 8 ++++---- examples/vmnet.yaml | 8 ++++---- 9 files changed, 32 insertions(+), 32 deletions(-) diff --git a/examples/buildkit.yaml b/examples/buildkit.yaml index e26c666e794..393f6c86e78 100644 --- a/examples/buildkit.yaml +++ b/examples/buildkit.yaml @@ -12,12 +12,12 @@ message: | ------- images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" diff --git a/examples/default.yaml b/examples/default.yaml index a0b8bd2a4ec..d9040fac8cc 100644 --- a/examples/default.yaml +++ b/examples/default.yaml @@ -24,12 +24,12 @@ arch: null # 🔵 This file: Ubuntu images images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" diff --git a/examples/experimental/9p.yaml b/examples/experimental/9p.yaml index 2a12c1d6a18..3fd96a5f9d1 100644 --- a/examples/experimental/9p.yaml +++ b/examples/experimental/9p.yaml @@ -3,12 +3,12 @@ # This template is planned to be merged to default.yaml in Lima v1.0 (ETA: 2022 Q2). images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" diff --git a/examples/experimental/armv7l.yaml b/examples/experimental/armv7l.yaml index 91c5243f847..2fd323c866b 100644 --- a/examples/experimental/armv7l.yaml +++ b/examples/experimental/armv7l.yaml @@ -3,9 +3,9 @@ arch: "armv7l" images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-armhf.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-armhf.img" arch: "armv7l" - digest: "sha256:849b92b9735c022b986b64cdc7d518535c654073b15a6732a53f6ebebbea259b" + digest: "sha256:99b10abb8af8d6a7d454025ef068e77b7205924bcc166c2e0d306b629a478ca4" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-armhf.img" diff --git a/examples/experimental/riscv64.yaml b/examples/experimental/riscv64.yaml index 378151ed087..2a64893cf56 100644 --- a/examples/experimental/riscv64.yaml +++ b/examples/experimental/riscv64.yaml @@ -2,9 +2,9 @@ arch: "riscv64" images: -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-riscv64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-riscv64.img" arch: "riscv64" - digest: "sha256:18aadb8e2407dfb0e85948f53f231de15e65e21f5b7e9833e64188a2af3f4315" + digest: "sha256:3312ff20f3198166359351b1ea090a88b4c51d3832d9ff48964701bbc4db7cfa" kernel: # Extracted from http://http.us.debian.org/debian/pool/main/u/u-boot/u-boot-qemu_2023.07+dfsg-1_all.deb (GPL-2.0) location: "https://github.com/lima-vm/u-boot-qemu-mirror/releases/download/2023.07%2Bdfsg-7/qemu-riscv64_smode_uboot.elf" diff --git a/examples/experimental/virtiofs-linux.yaml b/examples/experimental/virtiofs-linux.yaml index 0d391adb2e8..5985d48c54b 100644 --- a/examples/experimental/virtiofs-linux.yaml +++ b/examples/experimental/virtiofs-linux.yaml @@ -5,12 +5,12 @@ # for all operations. images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" diff --git a/examples/experimental/vnc.yaml b/examples/experimental/vnc.yaml index b573df946ae..b67e46551ec 100644 --- a/examples/experimental/vnc.yaml +++ b/examples/experimental/vnc.yaml @@ -2,12 +2,12 @@ # This template requires Lima v0.20.0 or later. images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" diff --git a/examples/ubuntu.yaml b/examples/ubuntu.yaml index 92ea444fec4..0c2d0837a49 100644 --- a/examples/ubuntu.yaml +++ b/examples/ubuntu.yaml @@ -1,12 +1,12 @@ # This template requires Lima v0.7.0 or later. images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" diff --git a/examples/vmnet.yaml b/examples/vmnet.yaml index 20fb609a42b..73f1f4e7901 100644 --- a/examples/vmnet.yaml +++ b/examples/vmnet.yaml @@ -9,12 +9,12 @@ # This template requires Lima v0.7.0 or later. # Older versions of Lima were using a different syntax for supporting vmnet.framework. images: -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:f1f08067d92fedd9f4a0952d86bbb13506f054eb06599003154bea65bc7463a0" -- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20231220/ubuntu-23.10-server-cloudimg-arm64.img" + digest: "sha256:a7700ca87b691246cf57812c63f64a8ab0d6702c00f04c8f6efd97513bab5d59" +- location: "https://cloud-images.ubuntu.com/releases/23.10/release-20240125/ubuntu-23.10-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:261fdf08e5ed8dffbf13a6a6d82d6e997d85bdda71f3e7212773b48a619a42fc" + digest: "sha256:1072e90dd339fd7ba1e82b6c1c3b03183287ca4a6da52c04eaeb0e5653a59bc7" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64.img" From eaf875ffc76805b61f4ccff3fce1e8ee7319f0e6 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 1 Feb 2024 09:02:09 +0900 Subject: [PATCH 3/5] templates: update Ubuntu 22.04 to release-20240126 Signed-off-by: Akihiro Suda --- examples/apptainer-rootful.yaml | 8 ++++---- examples/apptainer.yaml | 8 ++++---- examples/docker-rootful.yaml | 8 ++++---- examples/docker.yaml | 8 ++++---- examples/experimental/rke2.yaml | 8 ++++---- examples/experimental/u7s.yaml | 8 ++++---- examples/faasd.yaml | 8 ++++---- examples/k3s.yaml | 8 ++++---- examples/k8s.yaml | 8 ++++---- examples/ubuntu-lts.yaml | 8 ++++---- 10 files changed, 40 insertions(+), 40 deletions(-) diff --git a/examples/apptainer-rootful.yaml b/examples/apptainer-rootful.yaml index 293edd8408c..a38160b5146 100644 --- a/examples/apptainer-rootful.yaml +++ b/examples/apptainer-rootful.yaml @@ -4,12 +4,12 @@ images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/apptainer.yaml b/examples/apptainer.yaml index c98c21f7d44..3aca169eb8b 100644 --- a/examples/apptainer.yaml +++ b/examples/apptainer.yaml @@ -4,12 +4,12 @@ images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/docker-rootful.yaml b/examples/docker-rootful.yaml index 813588b1d12..3e85516b016 100644 --- a/examples/docker-rootful.yaml +++ b/examples/docker-rootful.yaml @@ -9,12 +9,12 @@ # This template requires Lima v0.20.0 or later images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/docker.yaml b/examples/docker.yaml index fdf3cd80e69..c795be7d012 100644 --- a/examples/docker.yaml +++ b/examples/docker.yaml @@ -9,12 +9,12 @@ # This template requires Lima v0.8.0 or later images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/experimental/rke2.yaml b/examples/experimental/rke2.yaml index 4166185c7f0..62979d3fb53 100644 --- a/examples/experimental/rke2.yaml +++ b/examples/experimental/rke2.yaml @@ -17,12 +17,12 @@ images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/experimental/u7s.yaml b/examples/experimental/u7s.yaml index a459d117de5..d9f6ae0dd33 100644 --- a/examples/experimental/u7s.yaml +++ b/examples/experimental/u7s.yaml @@ -13,12 +13,12 @@ # This template requires Lima v0.8.0 or later images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/faasd.yaml b/examples/faasd.yaml index 8ebd08c7701..97b00f39dc5 100644 --- a/examples/faasd.yaml +++ b/examples/faasd.yaml @@ -27,12 +27,12 @@ message: | # Image is set to jammy (22.04 LTS) for long-term stability images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/k3s.yaml b/examples/k3s.yaml index 19aee0b70fd..6995573f316 100644 --- a/examples/k3s.yaml +++ b/examples/k3s.yaml @@ -14,12 +14,12 @@ images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/k8s.yaml b/examples/k8s.yaml index aa71c3de551..fd60cab2aa6 100644 --- a/examples/k8s.yaml +++ b/examples/k8s.yaml @@ -13,12 +13,12 @@ # This template requires Lima v0.20.0 or later. images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" diff --git a/examples/ubuntu-lts.yaml b/examples/ubuntu-lts.yaml index dba821f1fe7..8d78bf4d7c6 100644 --- a/examples/ubuntu-lts.yaml +++ b/examples/ubuntu-lts.yaml @@ -1,12 +1,12 @@ # This template requires Lima v0.7.0 or later. images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-amd64.img" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-amd64.img" arch: "x86_64" - digest: "sha256:6d6af17f28c895d87e29092725370387c5e19efe57e58b96dc574feed4245f89" -- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20231211/ubuntu-22.04-server-cloudimg-arm64.img" + digest: "sha256:9f8a0d84b81a1d481aafca2337cb9f0c1fdf697239ac488177cf29c97d706c25" +- location: "https://cloud-images.ubuntu.com/releases/22.04/release-20240126/ubuntu-22.04-server-cloudimg-arm64.img" arch: "aarch64" - digest: "sha256:f885a8e8f62ab2c39ab0442ea182b69d49ccd990d24791acb4f1724573d8120f" + digest: "sha256:dddfb1741f16ea9eaaaeb731c5c67dd2cb38a4768b2007954cb9babfe1008e0d" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" From 7e3c4c11b661d3c148334418876f8f7d2c2c27da Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 1 Feb 2024 09:06:28 +0900 Subject: [PATCH 4/5] templates: update CentOS Stream 9 to 20240129.0 Signed-off-by: Akihiro Suda --- examples/centos-stream-9.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/centos-stream-9.yaml b/examples/centos-stream-9.yaml index 174ec8f0c9b..3825407d8bc 100644 --- a/examples/centos-stream-9.yaml +++ b/examples/centos-stream-9.yaml @@ -2,12 +2,12 @@ images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20240115.0.x86_64.qcow2" +- location: "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20240129.0.x86_64.qcow2" arch: "x86_64" - digest: "sha256:eb0d9688a183f1f744c6a9d633ea4a3498eeab0d4b7b341d186e86de0dac3aa6" -- location: "https://cloud.centos.org/centos/9-stream/aarch64/images/CentOS-Stream-GenericCloud-9-20240115.0.aarch64.qcow2" + digest: "sha256:48f12bbf6362a9f75a07208bcee98006d76726c3e9997bb114589718151210b6" +- location: "https://cloud.centos.org/centos/9-stream/aarch64/images/CentOS-Stream-GenericCloud-9-20240129.0.aarch64.qcow2" arch: "aarch64" - digest: "sha256:2c8d666a098c4413171840d3eb45282345f561bd75cc790da29effcdb15afacb" + digest: "sha256:46a27ab0a46c8b61adfb13c3a1a19340eedc41603b81e7ee509a44da444c68af" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2" From e036034efd25b180cd1ad4996a39489c86eaa941 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 1 Feb 2024 09:07:09 +0900 Subject: [PATCH 5/5] templates: update CentOS Stream 8 to 20240129.0 Signed-off-by: Akihiro Suda --- examples/centos-stream-8.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/centos-stream-8.yaml b/examples/centos-stream-8.yaml index a7bb7e0b276..525112570f7 100644 --- a/examples/centos-stream-8.yaml +++ b/examples/centos-stream-8.yaml @@ -5,12 +5,12 @@ images: # Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months. -- location: "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-GenericCloud-8-20240117.0.x86_64.qcow2" +- location: "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-GenericCloud-8-20240129.0.x86_64.qcow2" arch: "x86_64" - digest: "sha256:16fae688834b52fd9e03d3a408efb21a378b4bb7210d211c870491c0ff70a0d9" -- location: "https://cloud.centos.org/centos/8-stream/aarch64/images/CentOS-Stream-GenericCloud-8-20240117.0.aarch64.qcow2" + digest: "sha256:b4b6ae33c00e57367b4adecdf2e609736a9fb91c10dc8ad949a883f9e9246ade" +- location: "https://cloud.centos.org/centos/8-stream/aarch64/images/CentOS-Stream-GenericCloud-8-20240129.0.aarch64.qcow2" arch: "aarch64" - digest: "sha256:591a2f1b2664f8fa5f092b3276e959bcb44657ec5bab47d0d07781ef0bf4592e" + digest: "sha256:6b6f7a7f7d53409fc332359951941ac6226f2180c0fe4d4eeca7f390d1473994" # Fallback to the latest release image. # Hint: run `limactl prune` to invalidate the cache - location: "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-GenericCloud-8-latest.x86_64.qcow2"