Include oslo.messaging amqp support for rpc and notifications

This commit conditionally includes messaging amqp class for the
oslo.messaging AMQP 1.0 driver to support notifications.

This patch:
* include keystone::messaging::amqp class for oslo_messaging_amqp opts

Change-Id: I8eb23a21d2499795c3a76ae3197bda7773165a8c
This commit is contained in:
Andrew Smith 2017-03-19 17:07:47 -04:00
parent 02f5102eeb
commit 8db8040e8b
2 changed files with 8 additions and 0 deletions

View File

@ -208,6 +208,10 @@ class tripleo::profile::base::keystone (
}),
}
if 'amqp' in [$oslomsg_rpc_proto, $oslomsg_notify_proto]{
include ::keystone::messaging::amqp
}
include ::keystone::config
class { '::keystone::wsgi::apache':
ssl_cert => $tls_certfile,

View File

@ -0,0 +1,4 @@
---
features:
- Include the amqp messaging class when the oslo.messaging rpc
protocol is enabled for AMQP 1.0.