1
0
mirror of https://github.com/openshift/openshift-ansible.git synced 2026-02-05 06:46:04 +01:00

Merge pull request #12528 from gpei/prevent_419_rhel

CORS-3957 - Drop the support for RHEL node when cluster version is 4.19 and above
This commit is contained in:
openshift-merge-bot[bot]
2025-04-01 11:18:51 +00:00
committed by GitHub

View File

@@ -23,3 +23,8 @@
- l_cluster_version is version('4.10', '>=')
- ansible_facts['distribution'] == "RedHat"
- ansible_facts['distribution_version'] is version('8.4', '<')
- name: Fail if cluster version is greater than or equal to 4.19
fail:
msg: "RHEL nodes in version 4.19 and above are no longer supported"
when: l_cluster_version is version('4.19', '>=')