78260f98e4
The section [ovs] is needed only for ovs/ovn configurations. TrivialFix Change-Id: If9015b8f53c04cf3257331449ebd50163fabcab0 Signed-off-by: Maksim Malchuk <maksim.malchuk@gmail.com>
25 lines
722 B
Django/Jinja
25 lines
722 B
Django/Jinja
# dhcp_agent.ini
|
|
[DEFAULT]
|
|
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
|
enable_isolated_metadata = true
|
|
force_metadata = true
|
|
dnsmasq_dns_servers = {{ neutron_dnsmasq_dns_servers }}
|
|
|
|
{% if neutron_plugin_agent == 'vmware_dvs' %}
|
|
ovs_integration_bridge = {{ neutron_bridge_name }}
|
|
interface_driver = openvswitch
|
|
enable_metadata_network = True
|
|
dhcp_driver = vmware_nsx.plugins.dvs.dhcp.Dnsmasq
|
|
use_namespaces = True
|
|
ovs_use_veth = False
|
|
{% if vmware_dvs_dhcp_override_mac != '' %}
|
|
dhcp_override_mac = {{ vmware_dvs_dhcp_override_mac }}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if neutron_plugin_agent in ['openvswitch', 'ovn'] %}
|
|
[ovs]
|
|
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|
|
ovsdb_timeout = {{ ovsdb_timeout }}
|
|
{% endif %}
|