summaryrefslogtreecommitdiffstats
path: root/dovetail/container.py
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2017-03-03 03:48:11 +0000
committerxudan <xudan16@huawei.com>2017-03-21 01:07:54 +0000
commita2ea88b923adba8f6fa0fc5ad92e6ce5e72db775 (patch)
tree85551d1684babee774b065285b8a139d07fe102d /dovetail/container.py
parent3cf37c9ac7b40a388f81fed13cfb0ad606dcd9a1 (diff)
dovetail tool: Bugfix about the prepare_env of yardstick and get the yardstick.log
1. For Fuel, yardstick prepare_env.sh will fail when pwd != /home/opnfv/repos/yardstick 2. Modify yardstick_config.yml in Dovetail to change pwd to that path. 3. Use log file /tmp/yardstick/yardstick.log created by cmd "yardstick task start" rather than redirecting the console output to yardstick.log. JIRA: DOVETAIL-363 Change-Id: Ie0475cfabc66e342be868f0924a5fccd6fa74b58 Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/container.py')
-rw-r--r--dovetail/container.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/dovetail/container.py b/dovetail/container.py
index 4f6975fc..4889e51e 100644
--- a/dovetail/container.py
+++ b/dovetail/container.py
@@ -59,8 +59,11 @@ class Container(object):
result_volume = ' -v %s:%s ' % (dovetail_config['result_dir'],
dovetail_config[type]['result']['dir'])
- cmd = 'sudo docker run %s %s %s %s %s %s /bin/bash' % \
- (opts, envs, sshkey, openrc, result_volume, docker_image)
+ log_volume = ' -v %s:%s ' % (dovetail_config['result_dir'],
+ dovetail_config[type]['result']['log'])
+ cmd = 'sudo docker run %s %s %s %s %s %s %s /bin/bash' % \
+ (opts, envs, sshkey, openrc, result_volume,
+ log_volume, docker_image)
dt_utils.exec_cmd(cmd, cls.logger)
ret, container_id = \
dt_utils.exec_cmd("sudo docker ps | grep " + docker_image +