Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion hooks/playbooks/ironic_network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
_provider_physical_network: ironic
_provider_network_type: flat
_availability_zone_hints: null # Comma separated list of strings
_create_provisioning_router: true # Set to false to opt out of router creation
environment:
KUBECONFIG: "{{ cifmw_openshift_kubeconfig }}"
PATH: "{{ cifmw_path }}"
Expand Down Expand Up @@ -56,4 +57,6 @@
openstack router create provisioning
oc rsh openstackclient \
openstack router add subnet provisioning provisioning-subnet
when: _subnet_ip_version | int == 6
when:
- _subnet_ip_version | int == 6
- _create_provisioning_router | default(true) | bool