1e1be4fb56
Change-Id: Ib509c510e3e5ed19fbb1b5f68a060cde02d82eab
21 lines
384 B
Puppet
21 lines
384 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;
|
|
}
|
|
}
|