6b5273f415
These options are set in the neutron-api charm centrally, and this patch allows neutron-openvswitch charm to continue doing: 1, polling_interval Just used by neutron l2 agents, so neutron-openvswitch charm gets it via it's relations and set it in [agent] of ml2_conf.ini or openvswitch_agent.ini(>=Mitaka) 2, 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 3, 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 Change-Id: I76c0c75d5f3b4fdd1eb3242b53fde2e829fedca5 Partial-Bug: #1685788
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# icehouse
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
# Config managed by neutron-openvswitch charm
|
|
###############################################################################
|
|
[DEFAULT]
|
|
verbose = {{ verbose }}
|
|
debug = {{ debug }}
|
|
use_syslog = {{ use_syslog }}
|
|
state_path = /var/lib/neutron
|
|
lock_path = $state_path/lock
|
|
bind_host = 0.0.0.0
|
|
bind_port = 9696
|
|
{% if network_device_mtu -%}
|
|
network_device_mtu = {{ network_device_mtu }}
|
|
{% endif -%}
|
|
{% if core_plugin -%}
|
|
core_plugin = {{ core_plugin }}
|
|
{% endif -%}
|
|
|
|
api_paste_config = /etc/neutron/api-paste.ini
|
|
auth_strategy = keystone
|
|
{% if notifications == 'True' -%}
|
|
notification_driver = messaging
|
|
{% endif -%}
|
|
default_notification_level = INFO
|
|
notification_topics = notifications
|
|
rpc_response_timeout = {{ rpc_response_timeout }}
|
|
|
|
{% include "parts/rabbitmq" %}
|
|
|
|
[QUOTAS]
|
|
|
|
[DEFAULT_SERVICETYPE]
|
|
|
|
[AGENT]
|
|
root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf
|
|
report_interval = {{ report_interval }}
|
|
|
|
[keystone_authtoken]
|
|
signing_dir = /var/lib/neutron/keystone-signing
|