Merge "mistral: Enable notifier service"

This commit is contained in:
Zuul
2025-08-15 08:29:34 +00:00
committed by Gerrit Code Review

View File

@@ -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
}
}