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