
The ironic-inspector service can be deployed using separate api service and conductor service. This introduces the initial support for that deployment pattern. Note that the non-standalone mode is supported in only RHEL and CentOS. We may add Debian support later. Change-Id: Ic53d454841252cfb6802cd7856faaab2435b984b
22 lines
478 B
Puppet
22 lines
478 B
Puppet
# == Class: ironic::inspector::coordination
|
|
#
|
|
# Setup and configure ironic-inspector coordination settings.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*backend_url*]
|
|
# (Optional) Coordination backend URL.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class ironic::inspector::coordination (
|
|
$backend_url = $facts['os_service_default'],
|
|
) {
|
|
|
|
include ironic::deps
|
|
|
|
oslo::coordination{ 'ironic_inspector_config':
|
|
backend_url => $backend_url,
|
|
tag => 'ironic-inspector',
|
|
}
|
|
}
|