From 675eef731a098f83aa98c2021b151b7e5ba1da7d Mon Sep 17 00:00:00 2001 From: Guo Ruijing Date: Tue, 21 Jun 2016 03:03:32 +0800 Subject: Add fuel plugin for Yardstick 1. fuel can deploy yardstick 2. todo: fuel run yardstick Change-Id: If1a4b178187d78bdc2d4c3b6469faff78dc51ead Signed-off-by: Chou, David J Signed-off-by: Hinman, John Signed-off-by: Guo Ruijing --- .../puppet/manifests/yardstick-install.pp | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 fuel-plugin/deployment_scripts/puppet/manifests/yardstick-install.pp (limited to 'fuel-plugin/deployment_scripts/puppet/manifests/yardstick-install.pp') diff --git a/fuel-plugin/deployment_scripts/puppet/manifests/yardstick-install.pp b/fuel-plugin/deployment_scripts/puppet/manifests/yardstick-install.pp new file mode 100644 index 000000000..6547cb452 --- /dev/null +++ b/fuel-plugin/deployment_scripts/puppet/manifests/yardstick-install.pp @@ -0,0 +1,33 @@ +$fuel_settings = parseyaml(file('/etc/astute.yaml')) +$master_ip = $::fuel_settings['master_ip'] + +$access_hash = hiera_hash('access', {}) +$admin_tenant = $access_hash['tenant'] +$admin_user = $access_hash['user'] +$admin_password = $access_hash['password'] +$region = hiera('region', 'RegionOne') + +$service_endpoint = hiera('service_endpoint', $management_vip) +$ssl_hash = hiera_hash('use_ssl', {}) +$internal_auth_protocol = get_ssl_property($ssl_hash, {}, 'keystone', 'internal', 'protocol', 'http') +$internal_auth_address = get_ssl_property($ssl_hash, {}, 'keystone', 'internal', 'hostname', [$service_endpoint]) +$identity_uri = "${internal_auth_protocol}://${internal_auth_address}:5000" +$auth_url = "${identity_uri}/${auth_api_version}" + +exec { "install yardstick": + command => "curl http://${master_ip}:8080/plugins/fuel-plugin-yardstick-0.9/deployment_scripts/install.sh | bash -s ${master_ip}", + path => "/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin"; +} + +osnailyfacter::credentials_file { '/opt/yardstick/openrc': + admin_user => $admin_user, + admin_password => $admin_password, + admin_tenant => $admin_tenant, + region_name => $region, + auth_url => $auth_url, +} + +exec { "run yardstick": + command => "echo hello", + path => "/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin"; +} -- cgit 1.2.3-korg