puppet-cinder/manifests/coordination.pp
Takashi Kajinami 9078af8559 Use oslo::coordination to manage coordination parameters
This change replaces current implementation to manage coordination
parameters by the base class in puppet-oslo. With this change
the required backend package is installed according to the backend
driver used.

Depends-on: https://review.opendev.org/791628
Change-Id: I210f207d4f05862c98a2ef6d04162880d1cfc4ae
2021-05-18 10:05:02 +09:00

21 lines
382 B
Puppet

# == Class: cinder::coordination
#
# Setup and configure Cinder coordination settings.
#
# === Parameters
#
# [*backend_url*]
# (Optional) Coordination backend URL.
# Defaults to $::os_service_default
#
class cinder::coordination (
$backend_url = $::os_service_default,
) {
include cinder::deps
oslo::coordination{ 'cinder_config':
backend_url => $backend_url
}
}