Files
puppet-cinder/manifests/coordination.pp
Takashi Kajinami ca1221d2d2 Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: Ieeae14c18f21a3776dba04b784a9d7adce3342e8
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 10:01:51 +09:00

24 lines
584 B
Puppet

# == Class: cinder::coordination
#
# Setup and configure Cinder coordination settings.
#
# === Parameters
#
# [*backend_url*]
# (Optional) Coordination backend URL.
# Defaults to $facts['os_service_default']
#
class cinder::coordination (
$backend_url = $facts['os_service_default'],
) {
include cinder::deps
oslo::coordination { 'cinder_config':
backend_url => $backend_url,
}
# all coordination settings should be applied and all packages should be
# installed before service startup
Oslo::Coordination['cinder_config'] -> Anchor['cinder::service::begin']
}