Skip to content
Snippets Groups Projects
Commit 6fb514e0 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Fix neutron ml2 configuration for Ironic"

parents 3888c21a a83e53f1
No related branches found
No related tags found
No related merge requests found
# ml2_conf.ini
[ml2]
{% if enable_ironic | bool %}
type_drivers = flat
tenant_network_types = flat
tenant_network_types = vxlan, flat
mechanism_drivers = openvswitch
{% else %}
# Changing type_drivers after bootstrap can lead to database inconsistencies
......@@ -24,7 +23,11 @@ network_vlan_ranges =
{% endif %}
[ml2_type_flat]
{% if enable_ironic | bool %}
flat_networks = *
{% else %}
flat_networks = physnet1
{% endif %}
[ml2_type_vxlan]
vni_ranges = 1:1000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment