summaryrefslogtreecommitdiffstats
path: root/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd-ceilometer_install.pp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fuel-plugin/deployment_scripts/puppet/manifests/collectd-ceilometer_install.pp')
-rw-r--r--src/fuel-plugin/deployment_scripts/puppet/manifests/collectd-ceilometer_install.pp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd-ceilometer_install.pp b/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd-ceilometer_install.pp
new file mode 100644
index 00000000..6b6a76d2
--- /dev/null
+++ b/src/fuel-plugin/deployment_scripts/puppet/manifests/collectd-ceilometer_install.pp
@@ -0,0 +1,23 @@
+$master_ip = hiera('master_ip')
+$use_ceilometer = hiera('use_ceilometer', false)
+
+$management_vip = hiera('management_vip')
+$service_endpoint = hiera('service_endpoint', $management_vip)
+$ssl_hash = hiera_hash('use_ssl', {})
+$auth_protocol = get_ssl_property($ssl_hash, {}, 'keystone', 'internal', 'protocol', 'http')
+$auth_endpoint = get_ssl_property($ssl_hash, {}, 'keystone', 'internal', 'hostname', [$service_endpoint])
+$auth_uri = "${auth_protocol}://${auth_endpoint}:5000/v2.0"
+
+$ceilometer_hash = hiera_hash('ceilometer', {'user'=>'ceilometer'})
+$auth_user = 'ceilometer'
+$auth_password = $ceilometer_hash['user_password']
+
+$exe_url = "http://${master_ip}:8080/plugins/fuel-plugin-collectd-ceilometer-0.9/deployment_scripts/install.sh"
+
+if ($use_ceilometer) {
+
+ exec { "install collectd-ceilometer":
+ command => "curl ${exe_url} | bash -s ${master_ip} ${auth_uri} ${auth_user} ${auth_password}",
+ path => "/usr/bin:/usr/sbin:/bin:/sbin";
+ }
+}