08e806f098
This is needed if a subset of your flat or VLAN provider networks have a MTU that differ with what is set in global-physnet-mtu. Change-Id: Ifd348311b5c313fa95d6ed49c32d9b26b0f5e662 Closes-Bug: #1663533
62 lines
1.5 KiB
INI
62 lines
1.5 KiB
INI
# mitaka
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
###############################################################################
|
|
[ml2]
|
|
{% if extension_drivers -%}
|
|
extension_drivers={{ extension_drivers }}
|
|
{% endif -%}
|
|
|
|
{% if neutron_plugin == 'Calico' -%}
|
|
type_drivers = local,flat
|
|
mechanism_drivers = calico
|
|
{% else -%}
|
|
type_drivers = {{ tenant_network_types }}
|
|
tenant_network_types = {{ tenant_network_types }}
|
|
mechanism_drivers = {{ mechanism_drivers }}
|
|
|
|
{% if physical_network_mtus -%}
|
|
physical_network_mtus = {{ physical_network_mtus }}
|
|
{% endif -%}
|
|
{% if path_mtu -%}
|
|
path_mtu = {{ path_mtu }}
|
|
{% endif -%}
|
|
|
|
[ml2_type_gre]
|
|
tunnel_id_ranges = 1:1000
|
|
|
|
[ml2_type_vxlan]
|
|
vni_ranges = {{ vni_ranges }}
|
|
|
|
[ml2_type_vlan]
|
|
network_vlan_ranges = {{ vlan_ranges }}
|
|
|
|
[ml2_type_flat]
|
|
flat_networks = {{ network_providers }}
|
|
|
|
[ovs]
|
|
enable_tunneling = True
|
|
local_ip = {{ local_ip }}
|
|
|
|
[agent]
|
|
tunnel_types = {{ overlay_network_type }}
|
|
{% endif -%}
|
|
|
|
[securitygroup]
|
|
{% if neutron_security_groups -%}
|
|
enable_security_group = True
|
|
{% if neutron_plugin == 'Calico' -%}
|
|
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
|
|
{% else -%}
|
|
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
|
|
{% endif -%}
|
|
{% else -%}
|
|
enable_security_group = False
|
|
{% endif -%}
|
|
|
|
{% if supported_pci_vendor_devs %}
|
|
[ml2_sriov]
|
|
supported_pci_vendor_devs = {{ supported_pci_vendor_devs }}
|
|
{% endif -%}
|