aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/resources
diff options
context:
space:
mode:
authorrexlee8776 <limingjiang@huawei.com>2017-06-19 06:53:12 +0000
committerRex Lee <limingjiang@huawei.com>2017-06-22 12:03:29 +0000
commit6552d3b7b08c3b9dcaa8f44adc31d5028c00e863 (patch)
tree9dbe1c32f89bdf0ecb2dd3ab089b010570c3416c /yardstick/resources
parentc591e10088dd42261f0ee6bc73ad657d0a797ef1 (diff)
bugfix: storperf timeout in ci
JIRA: YARDSTICK-680 Change-Id: Ie405187b8ab085a9e4f40a7e7e7e661c94e83630 Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'yardstick/resources')
-rw-r--r--yardstick/resources/scripts/install/storperf.bash6
1 files changed, 5 insertions, 1 deletions
diff --git a/yardstick/resources/scripts/install/storperf.bash b/yardstick/resources/scripts/install/storperf.bash
index 9bbec7206..9d20a5a8a 100644
--- a/yardstick/resources/scripts/install/storperf.bash
+++ b/yardstick/resources/scripts/install/storperf.bash
@@ -20,8 +20,12 @@ set -e
mkdir -p /tmp/storperf-yardstick
docker pull opnfv/storperf
+
+STORPERF_DIR=/tmp/storperf-yardstick/carbon
docker run -t \
--env-file ~/storperf_admin-rc \
-p 5000:5000 -p 8000:8000 \
--v /tmp/storperf-yardstick/carbon:/opt/graphite/storage/whisper \
+-v $STORPERF_DIR:/opt/graphite/storage/whisper \
--name storperf-yardstick opnfv/storperf &
+
+chown www-data:www-data $STORPERF_DIR