9af5fe6aa6
See https://docs.openstack.org/neutron/rocky/admin/config-dns-int.html Change-Id: Ie4e97730304fb8a52e3ab933a202d79ec6e71585
65 lines
2.1 KiB
Django/Jinja
65 lines
2.1 KiB
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
# ML2 general
|
|
[ml2]
|
|
type_drivers = {{ neutron_plugins[neutron_plugin_type].drivers_type }}
|
|
tenant_network_types = {{ neutron_provider_networks.network_types if neutron_provider_networks.network_types != '' else 'local' }}
|
|
mechanism_drivers = {{ neutron_ml2_mechanism_drivers }}
|
|
extension_drivers = port_security{% if 'qos' in neutron_plugin_base %},qos{% endif %}{% if 'dns' in neutron_plugin_base %},dns{% endif %}{% if 'dns_domain_ports' in neutron_plugin_base %},dns_domain_ports{% endif %}
|
|
|
|
{% if neutron_provider_networks.network_mappings is defined and (neutron_plugin_type == 'ml2.opendaylight' and ('odl-router_v2' in neutron_plugin_base or 'odl-router' in neutron_plugin_base)) %}
|
|
bridge_mappings = {{ neutron_provider_networks.network_mappings }}
|
|
{% endif %}
|
|
|
|
{% if neutron_provider_networks.network_flat_networks is defined %}
|
|
|
|
# ML2 flat networks
|
|
[ml2_type_flat]
|
|
flat_networks = {{ neutron_provider_networks.network_flat_networks }}
|
|
|
|
{% endif %}
|
|
|
|
{% if neutron_provider_networks.network_vlan_ranges is defined %}
|
|
|
|
# ML2 VLAN networks
|
|
[ml2_type_vlan]
|
|
network_vlan_ranges = {{ neutron_provider_networks.network_vlan_ranges }}
|
|
|
|
{% endif %}
|
|
|
|
{% if neutron_provider_networks.network_vxlan_ranges is defined %}
|
|
|
|
# ML2 VXLAN networks
|
|
[ml2_type_vxlan]
|
|
vxlan_group = {{ neutron_vxlan_group }}
|
|
vni_ranges = {{ neutron_provider_networks.network_vxlan_ranges }}
|
|
|
|
{% endif %}
|
|
|
|
{% if neutron_provider_networks.network_geneve_ranges is defined %}
|
|
|
|
[ml2_type_geneve]
|
|
vni_ranges = {{ neutron_provider_networks.network_geneve_ranges }}
|
|
max_header_size = 38
|
|
|
|
{% endif %}
|
|
|
|
{% if neutron_plugin_type == 'ml2.ovn' and (neutron_services['neutron-server']['group'] or neutron_services['neutron-ovn-controller']['group'] in group_names) %}
|
|
|
|
[ovn]
|
|
ovn_native_dhcp = True
|
|
ovn_nb_connection = tcp:{{ neutron_ovn_ip }}:6641
|
|
ovn_sb_connection = tcp:{{ neutron_ovn_ip }}:6642
|
|
ovn_l3_scheduler = {{ neutron_ovn_l3_scheduler }}
|
|
ovn_metadata_enabled = True
|
|
|
|
{% endif %}
|
|
|
|
# Security groups
|
|
[securitygroup]
|
|
{% if neutron_plugin_type == 'ml2.ovs' %}
|
|
firewall_driver = iptables_hybrid
|
|
{% endif %}
|
|
enable_security_group = True
|
|
enable_ipset = True
|