Implements internal-dns support

https://docs.openstack.org/ocata/networking-guide/config-dns-int.html

Change-Id: I6cec005c43b45b05f21b1d56e0939dec9323c2b1
This commit is contained in:
ArchiFleKs 2017-03-15 14:15:54 +01:00 committed by Jesse Pretorius (odyssey4me)
parent 39d5293eff
commit 4351deeb55
2 changed files with 2 additions and 1 deletions

View File

@ -128,6 +128,7 @@ neutron_plugin_core: "{{ neutron_plugins[neutron_plugin_type].plugin_core }}"
# - vpnaas
# - metering
# - qos
# - dns
# Deprecated: instead of triggering lbaas through neutron_plugin_core it will be triggered when Octavia is installed, neutron_lbaas_namespace var is set to True, or both:
# - neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2 or lbaasv2
neutron_lbaas_namespace: "{% if 'neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2' in neutron_plugin_base %}True{% else %}False{% endif %}"

View File

@ -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 %}
extension_drivers = port_security{% if 'qos' in neutron_plugin_base %},qos{% endif %}{% if 'dns' in neutron_plugin_base %},dns{% endif %}
{% if neutron_provider_networks.network_flat_networks is defined %}