aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--puppet/services/ceilometer-base.yaml2
-rw-r--r--puppet/services/keystone.yaml5
-rw-r--r--releasenotes/notes/ceilometer-keystone-notifications-f1e463d0ec939b22.yaml5
-rw-r--r--releasenotes/notes/extra-keystone-notification-topics-8be1d37afd90b910.yaml9
4 files changed, 21 insertions, 0 deletions
diff --git a/puppet/services/ceilometer-base.yaml b/puppet/services/ceilometer-base.yaml
index 55ee9675..140e39e8 100644
--- a/puppet/services/ceilometer-base.yaml
+++ b/puppet/services/ceilometer-base.yaml
@@ -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
diff --git a/puppet/services/keystone.yaml b/puppet/services/keystone.yaml
index 6301314a..630cc78e 100644
--- a/puppet/services/keystone.yaml
+++ b/puppet/services/keystone.yaml
@@ -28,6 +28,10 @@ parameters:
type: string
constraints:
- allowed_values: [ 'basic', 'cadf' ]
+ KeystoneNotificationTopics:
+ description: Keystone notification topics to enable
+ default: []
+ type: comma_delimited_list
KeystoneRegion:
type: string
default: 'regionOne'
@@ -296,6 +300,7 @@ outputs:
keystone::rabbit_port: {get_param: RabbitClientPort}
keystone::notification_driver: {get_param: NotificationDriver}
keystone::notification_format: {get_param: KeystoneNotificationFormat}
+ tripleo::profile::base::keystone::extra_notification_topics: {get_param: KeystoneNotificationTopics}
keystone::roles::admin::email: {get_param: AdminEmail}
keystone::roles::admin::password: {get_param: AdminPassword}
keystone::endpoint::public_url: {get_param: [EndpointMap, KeystonePublic, uri_no_suffix]}
diff --git a/releasenotes/notes/ceilometer-keystone-notifications-f1e463d0ec939b22.yaml b/releasenotes/notes/ceilometer-keystone-notifications-f1e463d0ec939b22.yaml
new file mode 100644
index 00000000..c49806b2
--- /dev/null
+++ b/releasenotes/notes/ceilometer-keystone-notifications-f1e463d0ec939b22.yaml
@@ -0,0 +1,5 @@
+---
+fixes:
+ - |
+ Enabling ceilometer automatically enables keystone notifications
+ through the 'notifications' topic (which was the default).
diff --git a/releasenotes/notes/extra-keystone-notification-topics-8be1d37afd90b910.yaml b/releasenotes/notes/extra-keystone-notification-topics-8be1d37afd90b910.yaml
new file mode 100644
index 00000000..d39a1ae2
--- /dev/null
+++ b/releasenotes/notes/extra-keystone-notification-topics-8be1d37afd90b910.yaml
@@ -0,0 +1,9 @@
+---
+features:
+ - |
+ The KeystoneNotificationTopics parameter was introduced. This takes a list
+ which will configure extra notification topics, which end up as queues in
+ the message broker. This is useful for when keystone notifications need to
+ be integrated with third party software. Note that enabling telemetry will
+ by default make keystone emit notifications to the 'notifications' topic, but
+ this parameter can enable extra topics still.