dd7332386a
The 'neutron.openstack.common.notifier.rpc_notifier' notification driver key was removed from neutron in Ocata; 'messaging' has been provided directly from oslo.messaging since icehouse, so switch to using the newer, correct value for configuration of notifications. Change-Id: I67e66caefdabc88e7fa5762133b4313fd84c840b Closes-Bug: 1681452
41 lines
1.0 KiB
Plaintext
41 lines
1.0 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
|
|
|
|
{% include "parts/rabbitmq" %}
|
|
|
|
[QUOTAS]
|
|
|
|
[DEFAULT_SERVICETYPE]
|
|
|
|
[AGENT]
|
|
root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf
|
|
|
|
[keystone_authtoken]
|
|
signing_dir = /var/lib/neutron/keystone-signing
|