
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I309dc0910bf7111cba3aaa58688b862590043973
21 lines
396 B
Puppet
21 lines
396 B
Puppet
# == Class: cinder::coordination
|
|
#
|
|
# Setup and configure Cinder coordination settings.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*backend_url*]
|
|
# (Optional) Coordination backend URL.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class cinder::coordination (
|
|
$backend_url = $facts['os_service_default'],
|
|
) {
|
|
|
|
include cinder::deps
|
|
|
|
oslo::coordination{ 'cinder_config':
|
|
backend_url => $backend_url
|
|
}
|
|
}
|