From 215080b80bdeead9f093bea7ec7ef1d8b1c0afca Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 2 Aug 2025 22:06:34 +0900 Subject: [PATCH] mistral: Enable notifier service Depends-on: https://review.opendev.org/956342 Change-Id: Ibf78d13efd919b1094fa3969a0d9cca372c79e35 Signed-off-by: Takashi Kajinami --- manifests/mistral.pp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/manifests/mistral.pp b/manifests/mistral.pp index 43d8d7b31..c107e99ef 100644 --- a/manifests/mistral.pp +++ b/manifests/mistral.pp @@ -76,4 +76,12 @@ class openstack_integration::mistral { class { 'mistral::executor': } class { 'mistral::event_engine': } + $notifier_type = $facts['os']['family'] ? { + 'RedHat' => 'remote', + default => 'local', + } + + class { 'mistral::notifier': + type => $notifier_type + } }