
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: Ia996ad7dfba8e667e1d9cdcbdcf5c74f81972c48 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
24 lines
646 B
Puppet
24 lines
646 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,
|
|
}
|
|
|
|
# all coordination settings should be applied and all packages should be
|
|
# installed before service startup
|
|
Oslo::Coordination['ironic_inspector_config'] -> Anchor['ironic-inspector::service::begin']
|
|
}
|