60a43f7745
This parameter was deprecated during the previous cycle[1].
[1] c7fa10285d
Change-Id: Ib253453b39ae7ac68b6e85db8b262cd201413a5c
25 lines
590 B
Puppet
25 lines
590 B
Puppet
# == Class: mistral::coordination
|
|
#
|
|
# Setup and configure Mistral coordination settings.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*backend_url*]
|
|
# (Optional) Coordination backend URL.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class mistral::coordination (
|
|
$backend_url = $facts['os_service_default'],
|
|
) {
|
|
|
|
include mistral::deps
|
|
|
|
oslo::coordination{ 'mistral_config':
|
|
backend_url => $backend_url
|
|
}
|
|
|
|
# all coordination settings should be applied and all packages should be
|
|
# installed before service startup
|
|
Oslo::Coordination['mistral_config'] -> Anchor['mistral::service::begin']
|
|
}
|