From 91bf807fff097a4e6fd6d9355388dbc8e1ec1e12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Roche?= Date: Mon, 11 May 2026 16:42:24 +0200 Subject: [PATCH] feat: add the next ubuntu LTS release (26.04) --- scripts/update-images.py | 3 +++ ubuntu/images.json | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/scripts/update-images.py b/scripts/update-images.py index 8baf54d..37f3e01 100755 --- a/scripts/update-images.py +++ b/scripts/update-images.py @@ -100,6 +100,7 @@ def ubuntu_parse(): kinetic_url = "https://cloud-images.ubuntu.com/releases/22.10/" jammy_url = "https://cloud-images.ubuntu.com/releases/22.04/" focal_url = "https://cloud-images.ubuntu.com/releases/focal/" + resolute_url = "https://cloud-images.ubuntu.com/releases/resolute/" oracular = get_latest_ubuntu_image(oracular_url) noble = get_latest_ubuntu_image(noble_url) mantic = get_latest_ubuntu_image(mantic_url) @@ -107,6 +108,7 @@ def ubuntu_parse(): kinetic = get_latest_ubuntu_image(kinetic_url) jammy = get_latest_ubuntu_image(jammy_url) focal = get_latest_ubuntu_image(focal_url) + resolute = get_latest_ubuntu_image(resolute_url) res = {} def gen_entry_dict(entry): @@ -120,6 +122,7 @@ def gen_entry_dict(entry): "23_10": gen_entry_dict(mantic[arch]), "24_04": gen_entry_dict(noble[arch]), "24_10": gen_entry_dict(oracular[arch]), + "26_04": gen_entry_dict(resolute[arch]), } return json.dumps(res) diff --git a/ubuntu/images.json b/ubuntu/images.json index b37bbc5..93bffbe 100644 --- a/ubuntu/images.json +++ b/ubuntu/images.json @@ -57,6 +57,10 @@ "24_10": { "hash": "00yars1n82rcxvba8n8krlg32phf36avqprldrj5ypl910r1vwv9", "name": "https://cloud-images.ubuntu.com/releases/oracular/release-20250701/ubuntu-24.10-server-cloudimg-amd64.img" + }, + "26_04": { + "hash": "sha256-jtIoyfCKUBIvpyMHYj2fiNkgm6JufoSe3VhPpnXjSGM=", + "name": "https://cloud-images.ubuntu.com/releases/resolute/release-20260421/ubuntu-26.04-server-cloudimg-amd64.img" } } }