Add support for dns_domain_ports api extension
See https://docs.openstack.org/neutron/rocky/admin/config-dns-int.html Change-Id: Ie4e97730304fb8a52e3ab933a202d79ec6e71585
This commit is contained in:
parent
ed75e869a0
commit
9af5fe6aa6
@ -2,7 +2,7 @@
|
||||
{% set neutron_plugin_loaded_base = [] %}
|
||||
|
||||
{% for plugin in neutron_plugin_base %}
|
||||
{% if plugin != 'dns' %}
|
||||
{% if plugin not in ['dns', 'dns_domain_ports'] %}
|
||||
{% set _ = neutron_plugin_loaded_base.append(plugin) %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
@ -5,7 +5,7 @@
|
||||
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 %}
|
||||
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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user