aboutsummaryrefslogtreecommitdiffstats
path: root/fuel-plugin-vsperf/deployment_scripts
diff options
context:
space:
mode:
authorBilly O'Mahony <billy.o.mahony@intel.com>2016-01-19 12:05:46 +0000
committerMaryam Tahhan <maryam.tahhan@intel.com>2016-01-25 09:54:51 +0000
commit44bc6ec61edaca48d5c6a9d8a894c6afa6919ed8 (patch)
tree4ef7c71e77a957c3f2e3925a624b037b79578bda /fuel-plugin-vsperf/deployment_scripts
parentc9413319f67ef305bf19d57ebcf45530215d2ac7 (diff)
fuel-plugin: Initial version targeting Fuel8
Change-Id: I21b24527da480c713899bffdaec8381752354e53 Signed-off-by: Billy O'Mahony <billy.o.mahony@intel.com> (cherry picked from commit 2a3ff071bd08ff02610286a5ad4ba46690b6bc6b)
Diffstat (limited to 'fuel-plugin-vsperf/deployment_scripts')
-rwxr-xr-xfuel-plugin-vsperf/deployment_scripts/deploy.sh4
-rw-r--r--fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp11
2 files changed, 15 insertions, 0 deletions
diff --git a/fuel-plugin-vsperf/deployment_scripts/deploy.sh b/fuel-plugin-vsperf/deployment_scripts/deploy.sh
new file mode 100755
index 00000000..6c82e46d
--- /dev/null
+++ b/fuel-plugin-vsperf/deployment_scripts/deploy.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+# It's a script which deploys your plugin
+
diff --git a/fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp b/fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp
new file mode 100644
index 00000000..bd38dbb7
--- /dev/null
+++ b/fuel-plugin-vsperf/deployment_scripts/puppet/manifests/vsperf-install.pp
@@ -0,0 +1,11 @@
+$fuel_settings = parseyaml(file('/etc/astute.yaml'))
+$master_ip = $::fuel_settings['master_ip']
+
+exec { "wget vsperf":
+ command => "wget http://$master_ip:8080/plugins/fuel-plugin-vsperf-1.0/repositories/ubuntu/vswitchperf.tgz -O /opt/vswitchperf.tgz",
+ path => "/usr/bin:/usr/sbin:/bin:/sbin",
+}
+exec { "untar vsperf":
+ command => "tar xf /opt/vswitchperf.tgz -C /opt",
+ path => "/usr/bin:/usr/sbin:/bin:/sbin",
+}