2018-11-16 13:06:27 -05:00
|
|
|
# == 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,
|
|
|
|
) {
|
|
|
|
|
2019-12-08 23:02:56 +01:00
|
|
|
include cinder::deps
|
2018-11-16 13:06:27 -05:00
|
|
|
|
2021-05-18 10:05:02 +09:00
|
|
|
oslo::coordination{ 'cinder_config':
|
|
|
|
backend_url => $backend_url
|
2018-11-16 13:06:27 -05:00
|
|
|
}
|
|
|
|
}
|