a03fe36fa6
This change uses a common DHCPAgentContext and takes care to check for a pre-existing setting in the dhcp_agent.ini. Only allowing a config change if there is no pre-existing setting. Please review and merge charm-helpers PR: https://github.com/juju/charm-helpers/pull/422 Partial-Bug: #1831935 func-test-pr: https://github.com/openstack-charmers/zaza-openstack-tests/pull/157 Change-Id: Ia01c637b0837a4e594d16f6565c605460ad3f922
29 lines
930 B
INI
29 lines
930 B
INI
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
###############################################################################
|
|
[DEFAULT]
|
|
state_path = /var/lib/neutron
|
|
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
|
|
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
|
|
root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
|
|
debug = {{ debug }}
|
|
|
|
{% if instance_mtu or dnsmasq_flags -%}
|
|
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
|
{% endif -%}
|
|
{% if plugin == 'nvp' or plugin == 'nsx' -%}
|
|
enable_metadata_network = True
|
|
enable_isolated_metadata = True
|
|
{% endif -%}
|
|
|
|
{% if plugin == 'n1kv' %}
|
|
enable_metadata_network = True
|
|
enable_isolated_metadata = True
|
|
resync_interval = 30
|
|
use_namespaces = True
|
|
dhcp_lease_time=3600
|
|
{% else %}
|
|
ovs_use_veth = {{ ovs_use_veth }}
|
|
{% endif %}
|