puppet-cinder/manifests/coordination.pp
Alan Bishop 9eb2b6329c Add ability to configure cinder-volume for active-active
Add the ability to configure the cluster name, and the backend URL used
for coordination locks.

Change-Id: I431c0f7bfa766356b7ec04bf2c4d5f830c1780a2
2018-11-16 13:06:27 -05:00

21 lines
386 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
cinder_config {
'coordination/backend_url': value => $backend_url;
}
}