From 826e867d0acca8c253f82f80a53c15d841471884 Mon Sep 17 00:00:00 2001 From: Ruslan Khanbikov Date: Fri, 6 Jul 2018 11:11:37 -0700 Subject: [PATCH] Keystone: it enables keystone notificaitons This patch sets the notifier driver to messagingv2 so all messages sent to RabbitMQ using the 2.0 format. For info: Auth notificaitons are supressed by default, to enable it uncomment the following parameter: conf: DEFAULT: notification_opt_out: "" Change-Id: I652fc34a229612dcb8b96c8722b8c6ac1c8aba3e Signed-off-by: Ruslan Khanbikov --- keystone/values.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/keystone/values.yaml b/keystone/values.yaml index 2773b6c783..76eb9f32a3 100644 --- a/keystone/values.yaml +++ b/keystone/values.yaml @@ -342,6 +342,8 @@ conf: DEFAULT: log_config_append: /etc/keystone/logging.conf max_token_size: 255 + #NOTE(rk760n): if you need auth notifications to be sent, uncomment it + #notification_opt_out: "" token: provider: fernet # 12 hours @@ -358,6 +360,8 @@ conf: cache: enabled: true backend: dogpile.cache.memcached + oslo_messaging_notifications: + driver: messagingv2 # NOTE(lamt) We can leverage multiple domains with different # configurations as outlined in # https://docs.openstack.org/keystone/pike/admin/identity-domain-specific-config.html.