Jimmy McCrory d9cc60b9ce Rename neutron_dhcp_domain to neutron_dns_domain
The dhcp_domain option has been marked for deprecation since Liberty and
was removed in Ocata [1]. Its replacement, dns_domain, should be used
instead.

[1] https://review.openstack.org/#/c/406243/

Change-Id: Ie46ccba05e02e1ec51dd0d61ab6d9d028b32b400
2017-02-16 12:35:17 -08:00

23 lines
636 B
Django/Jinja

# {{ ansible_managed }}
{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %}
{% set api_threads = _api_threads if _api_threads > 0 else 1 %}
# General
[DEFAULT]
debug = {{ debug }}
num_sync_threads = {{ neutron_num_sync_threads | default(api_threads) }}
# Drivers
interface_driver = {{ neutron_plugins[neutron_plugin_type].driver_interface }}
dhcp_driver = {{ neutron_driver_dhcp }}
# Dnsmasq options
dnsmasq_config_file = {{ neutron_conf_dir }}/dnsmasq-neutron.conf
dnsmasq_dns_servers = {{ neutron_dnsmasq_dns_servers }}
dnsmasq_lease_max = {{ neutron_dnsmasq_lease_max }}
# Metadata
enable_isolated_metadata = True