]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/cinder/manifests/ceilometer.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / cinder / manifests / ceilometer.pp
1 # == Class: cinder::ceilometer
2 #
3 # Setup Cinder to enable ceilometer can retrieve volume samples
4 # Ref: http://docs.openstack.org/developer/ceilometer/install/manual.html
5 #
6 # === Parameters
7 #
8 # [*notification_driver*]
9 #   (option) Driver or drivers to handle sending notifications.
10 #    Notice: rabbit_notifier has been deprecated in Grizzly, use rpc_notifier instead.
11 #
12
13
14 class cinder::ceilometer (
15   $notification_driver = 'cinder.openstack.common.notifier.rpc_notifier'
16 ) {
17
18   cinder_config {
19     'DEFAULT/notification_driver':     value => $notification_driver;
20   }
21 }
22