Skip to content

Commit d4f7a31

Browse files
owenjonesAlex-Welsh
authored andcommitted
Use CentOS Stream 9 IPA images with Rocky 9 and 10
Update IPA image selection to continue using the CentOS Stream 9 images with Rocky 10, until Rocky 10 IPA images are stable.
1 parent f2490f8 commit d4f7a31

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

etc/kayobe/stackhpc-ipa-images.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,20 @@ stackhpc_ipa_image_overcloud_enabled: true
1212
# Options are "amd64" and "aarch64".
1313
stackhpc_ipa_arch: amd64
1414

15+
# NOTE(owenjones): for now we'll override the release used so we use CentOS
16+
# Stream 9 IPA images on both Rocky 9 and 10 - remove once Rocky 10 IPA images
17+
# are stable.
18+
stackhpc_ipa_release: "{{ '9' if os_distribution == 'rocky' and os_release == '10' else os_release }}"
19+
1520
# The IPA image source, defined by os_distribution,
1621
# os_release, and the current stable version.
1722
stackhpc_ipa_image_url: "{{ stackhpc_release_pulp_content_url }}/ipa-images/\
1823
{{ openstack_release }}/{{ os_distribution }}/\
19-
{{ os_release }}{{ '/aarch64' if os_distribution == 'rocky' and stackhpc_ipa_arch == 'aarch64' else '' }}/\
24+
{{ stackhpc_ipa_release }}{{ '/aarch64' if os_distribution == 'rocky' and stackhpc_ipa_arch == 'aarch64' else '' }}/\
2025
{{ stackhpc_ipa_image_version }}"
2126

2227
# IPA image version tag selection
2328
stackhpc_ipa_image_version: >-
24-
{{ stackhpc_rocky_9_ipa_image_version_aarch64 if os_distribution == 'rocky' and os_release == '9' and stackhpc_ipa_arch == 'aarch64' else
25-
stackhpc_rocky_9_ipa_image_version if os_distribution == 'rocky' and os_release == '9' else
29+
{{ stackhpc_rocky_9_ipa_image_version_aarch64 if os_distribution == 'rocky' and stackhpc_ipa_arch == 'aarch64' else
30+
stackhpc_rocky_9_ipa_image_version if os_distribution == 'rocky' else
2631
stackhpc_ubuntu_noble_ipa_image_version if os_distribution == 'ubuntu' and os_release == 'noble' }}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
features:
3+
- |
4+
Updates to IPA image selection to continue using the CentOS Stream 9
5+
images with Rocky 10, until Rocky 10 IPA images are stable.

0 commit comments

Comments
 (0)