|
| 1 | +--- |
| 2 | +############################## |
| 3 | +# Release train overcloud host image sources |
| 4 | + |
| 5 | +# Whether or not to download overcloud host images from Ark |
| 6 | +stackhpc_download_overcloud_host_images: false |
| 7 | + |
| 8 | +# Whether or not to use images with MLNX_OFED installed (for deployment using |
| 9 | +# mellanox/Nvidia NICs). Only available for Ubuntu Jammy and Rocky Linux 9 |
| 10 | +# OFED images are currently WIP and this variable is a placeholder |
| 11 | +stackhpc_overcloud_host_image_is_ofed: false |
| 12 | + |
| 13 | +# The overcloud host image source, defined by os_distribution, os_release, |
| 14 | +# stackhpc_overcloud_host_image_is_ofed, and the current stable version. |
| 15 | +stackhpc_overcloud_host_image_url: "{{ stackhpc_release_pulp_content_url_with_auth }}/kayobe-images/\ |
| 16 | + {{ openstack_release }}/{{ os_distribution }}/{{ os_release }}/\ |
| 17 | + {{ 'ofed/' if stackhpc_overcloud_host_image_is_ofed else '' }}\ |
| 18 | + {{ stackhpc_overcloud_host_image_version }}/\ |
| 19 | + overcloud-{{ os_distribution }}-{{ os_release }}\ |
| 20 | + {{ '-ofed' if stackhpc_overcloud_host_image_is_ofed else '' }}.qcow2" |
| 21 | + |
| 22 | +# Overcloud host image versioning tags |
| 23 | +# These images must be in SMS, since they are used by our AIO CI runners |
| 24 | +stackhpc_centos_8_stream_overcloud_host_image_version: "yoga-20230525T095243" |
| 25 | +stackhpc_rocky_8_overcloud_host_image_version: "yoga-20230629T135322" |
| 26 | +stackhpc_rocky_9_overcloud_host_image_version: "yoga-20230515T145140" |
| 27 | +stackhpc_ubuntu_focal_overcloud_host_image_version: "yoga-20230609T120720" |
| 28 | +stackhpc_ubuntu_jammy_overcloud_host_image_version: "yoga-20230609T120720" |
| 29 | + |
| 30 | +# Overcloud host image version tag selection |
| 31 | +stackhpc_overcloud_host_image_version: >- |
| 32 | + {{ stackhpc_centos_8_stream_overcloud_host_image_version if os_distribution == 'centos' and os_release == '8-stream' else |
| 33 | + stackhpc_rocky_8_overcloud_host_image_version if os_distribution == 'rocky' and os_release == '8' else |
| 34 | + stackhpc_rocky_9_overcloud_host_image_version if os_distribution == 'rocky' and os_release == '9' else |
| 35 | + stackhpc_ubuntu_focal_overcloud_host_image_version if os_distribution == 'ubuntu' and os_release == 'focal' else |
| 36 | + stackhpc_ubuntu_jammy_overcloud_host_image_version if os_distribution == 'ubuntu' and os_release == 'jammy' }} |
0 commit comments