Skip to content

Commit

Permalink
added OCP version check to check routine of RedHat-EMEA-SSA-Team#247
Browse files Browse the repository at this point in the history
  • Loading branch information
knumskull committed May 24, 2023
1 parent ff2f1f9 commit 31a2457
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/02-create-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
- ../cluster.yml

tasks:
- name: Check IPv6 & OpenShift 4.12
- name: Check IPv6 & OpenShift version 4.12 or greater
ansible.builtin.fail:
msg: "Currently, it is not possible to install OpenShift 4.12 with IPv6 enabled with hetzner-ocp4 because of Issue #247"
when: (ip_families is defined and "IPv6" in ip_families)
when: (ip_families is defined and "IPv6" in ip_families) and (openshift_version is defined and openshift_version >= "4.12")

- name: Deploy cluster
import_role:
Expand Down

0 comments on commit 31a2457

Please sign in to comment.