@@ -42,19 +42,30 @@ infra_vm_root_format: qcow2
4242
4343# Base image for the infra VM root volume. Default is
4444# "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
45- # when os_distribution is "ubuntu", or
46- # https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
47- # when os_distribution is "rocky",
48- # or
45+ # when os_distribution is "ubuntu",
46+ # "https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
47+ # when os_distribution is "rocky" and os_release is "9",
48+ # "https://dl.rockylinux.org/pub/rocky/10/images/x86_64/Rocky-10-GenericCloud-Base.latest.x86_64.qcow2"
49+ # when os_distribution is "rocky" and os_release is "10",
4950# "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2"
51+ # when os_distribution is "centos" and os_release is "9-stream", or
52+ # "https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-10-latest.x86_64.qcow2"
5053# otherwise.
5154infra_vm_root_image: >-
5255 {%- if os_distribution == 'ubuntu' %}
5356 https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img
5457 {%- elif os_distribution == 'rocky' %}
58+ {%- if os_release == '9' %}
5559 https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
5660 {%- else -%}
61+ https://dl.rockylinux.org/pub/rocky/10/images/x86_64/Rocky-10-GenericCloud-Base.latest.x86_64.qcow2
62+ {%- endif %}
63+ {%- else -%}
64+ {%- if os_release == '9-stream' %}
5765 https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-9-latest.x86_64.qcow2
66+ {%- else -%}
67+ https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-10-latest.x86_64.qcow2
68+ {%- endif %}
5869 {%- endif %}
5970
6071# Capacity of the infra VM data volume.
0 commit comments