summaryrefslogtreecommitdiffstats
path: root/fuel-plugin/deployment_scripts/install.sh
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2016-06-21 03:03:32 +0800
committerGuo Ruijing <ruijing.guo@intel.com>2016-06-21 03:05:17 +0800
commit675eef731a098f83aa98c2021b151b7e5ba1da7d (patch)
tree77593df19c82bad2844743034600a93aa0255239 /fuel-plugin/deployment_scripts/install.sh
parent3ec9f7fbd9ed74126ae92be3e7d4c16b39674987 (diff)
Add fuel plugin for Yardstick
1. fuel can deploy yardstick 2. todo: fuel run yardstick Change-Id: If1a4b178187d78bdc2d4c3b6469faff78dc51ead Signed-off-by: Chou, David J <david.j.chou@intel.com> Signed-off-by: Hinman, John <john.hinman@intel.com> Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'fuel-plugin/deployment_scripts/install.sh')
-rwxr-xr-xfuel-plugin/deployment_scripts/install.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/fuel-plugin/deployment_scripts/install.sh b/fuel-plugin/deployment_scripts/install.sh
new file mode 100755
index 000000000..f0bb3e366
--- /dev/null
+++ b/fuel-plugin/deployment_scripts/install.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+set -eux
+
+HOST=$1
+INSTALL_HOME=/opt/yardstick
+rm -rf $INSTALL_HOME; mkdir -p $INSTALL_HOME
+
+cd $INSTALL_HOME
+
+sudo apt-get install -y python-virtualenv python-dev python-pip libffi-dev libssl-dev libxml2-dev libxslt1-dev
+pip install --user virtualenv
+pip install --upgrade virtualenv
+
+# create python virtual env
+virtualenv $INSTALL_HOME/yardstick_venv
+# source $INSTALL_HOME/yardstick_venv/bin/activate
+
+easy_install -U setuptools
+
+mkdir bin
+cd $INSTALL_HOME/bin
+
+curl http://$HOST:8080/plugins/fuel-plugin-yardstick-0.9/repositories/ubuntu/yardstick.tar.gz | tar xzvf -
+
+pip install -r tests/ci/requirements.txt