Permit Ubuntu Noble for deploy host and targets in requirements checks

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-repo_server/+/925571
Change-Id: I0cec77caee70bac6e8a2c994170cdafd9754f9f9
This commit is contained in:
Jonathan Rosser 2024-07-17 10:10:26 +01:00
parent 6f32d3562f
commit ad73fda3b7
2 changed files with 4 additions and 1 deletions

View File

@ -61,6 +61,7 @@
that: that:
- (ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_release'] == 'bookworm') or - (ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_release'] == 'bookworm') or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'jammy') or (ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'jammy') or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'noble') or
(ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '9') (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '9')
msg: > msg: >
The only supported platforms for this release are Debian 12 (Bookworm) The only supported platforms for this release are Debian 12 (Bookworm)

View File

@ -18,10 +18,12 @@
that: that:
(ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_release'] == 'bookworm') or (ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_release'] == 'bookworm') or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'jammy') or (ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'jammy') or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_release'] == 'noble') or
(ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '9') (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '9')
msg: >- msg: >-
The only supported platforms for this release are Debian 12 (Bookworm), The only supported platforms for this release are Debian 12 (Bookworm),
Ubuntu 22.04 (Jammy), CentOS Stream 9, and derivatives such as Rocky Linux. Ubuntu 22.04 (Jammy), Ubuntu 24.04 (Noble), CentOS Stream 9,
and derivatives such as Rocky Linux.
when: (check_operating_system | default(True))| bool when: (check_operating_system | default(True))| bool
tags: tags:
- check-operating-system - check-operating-system