Added ceilometer decision in neutron.conf for event notifications

Changes the oslo_messaging_notifications driver of neutron if
ceilometer is enabled

Change-Id: I16667ceb6fe75aff7f324d342e5075e1b028c70e
Closes-Bug: 1604793
This commit is contained in:
Dennis Mueller 2016-07-20 13:57:33 +02:00
parent da61508db8
commit 76f0f9ae27
1 changed files with 5 additions and 0 deletions

View File

@ -82,4 +82,9 @@ memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansi
[oslo_messaging_notifications]
{% if enable_ceilometer | bool %}
driver = messagingv2
topics = notifications
{% else %}
driver = noop
{% endif %}