From 9718252220867a18422f9f1e890fecddd9318865 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Sat, 11 Jan 2025 22:02:21 +0100 Subject: [PATCH] Updates images in bootstrap-images play (#2578) This is only kept as an example. However, it should still be up to date. Signed-off-by: Christian Berendt --- .../openstack/playbook-bootstrap-images.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/environments/openstack/playbook-bootstrap-images.yml b/environments/openstack/playbook-bootstrap-images.yml index a679a579d..a29f2136a 100644 --- a/environments/openstack/playbook-bootstrap-images.yml +++ b/environments/openstack/playbook-bootstrap-images.yml @@ -6,8 +6,8 @@ connection: local vars: - url_ubuntu_image: https://cloud-images.ubuntu.com/minimal/releases/jammy/release/ubuntu-22.04-minimal-cloudimg-amd64.img - url_cirros_image: https://github.com/cirros-dev/cirros/releases/download/0.6.0/cirros-0.6.0-x86_64-disk.img + url_ubuntu_image: https://cloud-images.ubuntu.com/minimal/releases/noble/release/ubuntu-24.04-minimal-cloudimg-amd64.img + url_cirros_image: https://github.com/cirros-dev/cirros/releases/download/0.6.3/cirros-0.6.3-x86_64-disk.img tasks: - name: Download cirros image @@ -20,7 +20,7 @@ openstack.cloud.image: cloud: admin state: present - name: "Cirros 0.6.0" + name: "Cirros 0.6.3" is_public: true container_format: bare disk_format: qcow2 @@ -31,7 +31,7 @@ distro: ubuntu hw_rng_model: virtio - - name: Download ubuntu minimal 22.04 image + - name: Download ubuntu minimal 24.04 image ansible.builtin.get_url: url: "{{ url_ubuntu_image }}" dest: /tmp/ubuntu.img @@ -42,11 +42,11 @@ register: date changed_when: false - - name: Upload ubuntu minimal 22.04 image + - name: Upload ubuntu minimal 24.04 image openstack.cloud.image: cloud: admin state: present - name: "Ubuntu 22.04" + name: "Ubuntu 24.04" is_public: true container_format: bare disk_format: qcow2 @@ -67,6 +67,6 @@ image_original_user: ubuntu image_source: "{{ url_ubuntu_image }}" os_distro: ubuntu - os_version: "22.04" + os_version: "24.04" replace_frequency: never uuid_validity: forever