Magnum: add oslo_messaging_notifications config

Magnum can send RPC notifications to Ceilometer as define here:
https://github.com/openstack/ceilometer/blob/master/ceilometer/pipeline/data/event_definitions.yaml#L554

oslo_messaging_notifications section MUST be managed in magnum.conf file.

Change-Id: I6cafa6666bcb1fc15bf08ef049f0044e788eb98b
Closes-Bug: #1677655
This commit is contained in:
Bertrand Lallau 2017-03-30 17:03:12 +02:00 committed by Bertrand Lallau
parent d559f8096f
commit 3ecfd4e7d0

View File

@ -68,3 +68,11 @@ cert_manager_type = barbican
{% else %}
cert_manager_type = x509keypair
{% endif %}
[oslo_messaging_notifications]
{% if enable_ceilometer | bool %}
driver = messaging
topics = 'notifications'
{% else %}
driver = noop
{% endif %}