Set keystone notification topics if ceilometer is enabled

This sets the keystone notification topics only if ceilometer is
enabled. This mitigates the issue of keystone sending notifications
when nobody is receiving them.

Closes-Bug: #1729293
Depends-On: I4dcce73446633c08ea37ba567610eec398094036
Change-Id: I063af5e642388acc180cb8e728481c5a36cc8ddc
This commit is contained in:
Juan Antonio Osorio Robles 2017-11-01 12:03:58 +00:00
parent a0991433fa
commit 4adb82d03d
2 changed files with 7 additions and 0 deletions

View File

@ -174,6 +174,8 @@ outputs:
ceilometer::keystone::auth::region: {get_param: KeystoneRegion}
ceilometer::keystone::auth::tenant: 'service'
ceilometer::keystone::auth::configure_endpoint: {get_param: CeilometerApiEndpoint}
# Enable default notification queue
tripleo::profile::base::keystone::ceilometer_notification_topics: ["notifications"]
mysql:
ceilometer::db::mysql::password: {get_param: CeilometerPassword}
ceilometer::db::mysql::user: ceilometer

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Enabling ceilometer automatically enables keystone notifications
through the 'notifications' topic (which was the default).