71a303db65
Expose the 'enable_metadata_network' and 'enable_isolated_metadata' configuration options. enable_isolated_metadata enables metadata the metadata service on networks with no router port. Change-Id: If773109007a456385adebf295d044247417135db Closes-Bug: 1514901
25 lines
827 B
INI
25 lines
827 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
|
|
|
|
{% if instance_mtu or dnsmasq_flags -%}
|
|
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
|
{% endif -%}
|
|
|
|
enable_metadata_network = {{ enable_metadata_network }}
|
|
enable_isolated_metadata = {{ enable_isolated_metadata }}
|
|
|
|
{% if plugin == 'n1kv' %}
|
|
resync_interval = 30
|
|
use_namespaces = True
|
|
dhcp_lease_time=3600
|
|
{% else %}
|
|
ovs_use_veth = True
|
|
{% endif %}
|