We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3029813 commit eb70881Copy full SHA for eb70881
hooks/playbooks/ironic_network.yml
@@ -15,6 +15,7 @@
15
_provider_physical_network: ironic
16
_provider_network_type: flat
17
_availability_zone_hints: null # Comma separated list of strings
18
+ _create_provisioning_router: true # Set to false to opt out of router creation
19
environment:
20
KUBECONFIG: "{{ cifmw_openshift_kubeconfig }}"
21
PATH: "{{ cifmw_path }}"
@@ -56,4 +57,6 @@
56
57
openstack router create provisioning
58
oc rsh openstackclient \
59
openstack router add subnet provisioning provisioning-subnet
- when: _subnet_ip_version | int == 6
60
+ when:
61
+ - _subnet_ip_version | int == 6
62
+ - _create_provisioning_router | default(true) | bool
0 commit comments