Skip to content

Commit

Permalink
Added IPv6 and OpenShift 4.12 check because of #247
Browse files Browse the repository at this point in the history
  • Loading branch information
rbo authored and Robert Bohne committed Apr 14, 2023
1 parent b95bcce commit 21e2ed7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ansible/02-create-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
- ../cluster.yml

tasks:
- name: Check IPv6 & OpenShift 4.12
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)

- name: Deploy cluster
import_role:
name: openshift-4-cluster
Expand Down

1 comment on commit 21e2ed7

@knumskull
Copy link
Contributor

@knumskull knumskull commented on 21e2ed7 May 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This check prevent cluster installation with IPv6 enabled for all versions. It only checks for IPv6 definition, not for OCP version.
Check Pull request #281

Please sign in to comment.