d49b2a18ee
These two options are set in neutron-api charm centrally, this patch allows neutron-gateway charm to continue doing: 1, rpc_response_timeout Used by all neutron agents, so both neutron-gateway charm and neutron-openvswitch charm get it via it's relations and set it in [default] of neutron.conf 2, report_interval Used by all neutron agents, so both neutron-gateway charm and neutron-openvswitch charm get it via it's relations and set it in [agent] of neutron.conf This patch also syncs charmhelpers for setting them centrally. Change-Id: Ib97418b1aaf55f508cae05f4d7809d79a92a7f6f Partial-Bug: #1685788
22 lines
743 B
Plaintext
22 lines
743 B
Plaintext
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
###############################################################################
|
|
[DEFAULT]
|
|
verbose = {{ verbose }}
|
|
debug = {{ debug }}
|
|
lock_path = /var/lock/neutron
|
|
core_plugin = {{ core_plugin }}
|
|
{% include "parts/rabbitmq" %}
|
|
control_exchange = neutron
|
|
notification_driver = messaging
|
|
{% if network_device_mtu -%}
|
|
network_device_mtu = {{ network_device_mtu }}
|
|
{% endif -%}
|
|
api_workers = {{ workers }}
|
|
rpc_response_timeout = {{ rpc_response_timeout }}
|
|
|
|
[agent]
|
|
root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
|
|
report_interval = {{ report_interval }}
|