9078af8559
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
21 lines
382 B
Puppet
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
|
|
}
|
|
}
|