
Add the ability to configure the cluster name, and the backend URL used for coordination locks. Change-Id: I431c0f7bfa766356b7ec04bf2c4d5f830c1780a2
21 lines
386 B
Puppet
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;
|
|
}
|
|
}
|