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" } } }