diff options
author | kalyanreddy <reddyx.gundarapu@intel.com> | 2016-10-17 13:38:45 +0530 |
---|---|---|
committer | kalyanreddy <reddyx.gundarapu@intel.com> | 2016-10-17 13:39:25 +0530 |
commit | 16cd1036c486ffb3649e3c79332ce4cd6499002a (patch) | |
tree | 3681586ad86396b63901757063be7dff90ced0fb | |
parent | 2966c910ccaaa11e69ccfc08d6185c3520a2e8cb (diff) |
This patch contains updated Dockerfile to modify SSH Timeout value
for the execution of cyclictest through yardstick.
Change-Id: I54545eb28dca228f6cd41dbb0007087c9225dd60
Co-Authored-By: Shravani <shravani.p@tcs.com>
Signed-off-by: Gundarapu Kalyan Reddy <reddyx.gundarapu@intel.com>
-rw-r--r-- | docker_image_build/Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docker_image_build/Dockerfile b/docker_image_build/Dockerfile index fa7195400..57e22bbef 100644 --- a/docker_image_build/Dockerfile +++ b/docker_image_build/Dockerfile @@ -5,7 +5,6 @@ # FROM kvmfornfv1:latest RUN cd /root && git clone https://gerrit.opnfv.org/gerrit/p/yardstick.git -b stable/colorado -RUN var=`grep "loops" /root/yardstick/samples/cyclictest-node-context.yaml |awk '{ print $2/1000 }'`; \ - sed -i -e "s/3600/$((var+1500))/g" /root/yardstick/yardstick/ssh.py +RUN sed -i -e "s/3600/9000/g" /root/yardstick/yardstick/ssh.py RUN cd /root/yardstick && python setup.py install WORKDIR /root |