e17d73c416
The templates was missing a gate on the `instance_mtu` context variable. Update template for all supported versions to be on par with the neutrona-gateway charm. Change-Id: I2468ce5e20150371a7472ecdd89f8d4b3b14c489 Closes-Bug: #1887817
34 lines
1012 B
INI
34 lines
1012 B
INI
# mitaka
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
#
|
|
###############################################################################
|
|
|
|
[DEFAULT]
|
|
state_path = /var/lib/neutron
|
|
interface_driver = openvswitch
|
|
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 -%}
|
|
|
|
{% if dns_servers -%}
|
|
dnsmasq_dns_servers = {{ dns_servers }}
|
|
{% endif -%}
|
|
|
|
{% if dns_domain -%}
|
|
dns_domain = {{ dns_domain }}
|
|
# Per LP#1583769, dhcp_domain needs to be configured in mitaka as well. Additional
|
|
# testing shows that this has not been changed in newton, so will also
|
|
# specify the dhcp_domain field.
|
|
dhcp_domain = {{ dns_domain }}
|
|
{% endif -%}
|
|
|
|
enable_metadata_network = True
|
|
enable_isolated_metadata = True
|
|
|
|
ovs_use_veth = {{ ovs_use_veth }}
|