aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwu.zhihui <wu.zhihui1@zte.com.cn>2016-09-01 10:20:17 +0800
committerliang gao <jean.gaoliang@huawei.com>2016-09-06 01:42:54 +0000
commit031960e8c80bedc0bce00f950ad3555214763573 (patch)
tree81b954712ebd0afe6af7f424bf33d1802766e49e
parenta5b3d7298251a4170b8a2329fec43af27c9b7437 (diff)
Bugfix: correct the path of pod.yaml
According to https://build.opnfv.org/ci/job/yardstick-fuel-zte-pod2-daily-master/12/console, correct the path of pod.yaml. Change-Id: Ie364e1485b4a26c225062e8817a7d413d8c419fc Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn> (cherry picked from commit f5966b387360aeef3416a0b6eb825e6e36c7d9b8)
-rwxr-xr-xtests/ci/prepare_env.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ci/prepare_env.sh b/tests/ci/prepare_env.sh
index 8c0a8badc..5529a6f73 100755
--- a/tests/ci/prepare_env.sh
+++ b/tests/ci/prepare_env.sh
@@ -90,7 +90,7 @@ if [ "$INSTALLER_TYPE" == "fuel" ]; then
controller_ips=($(cat fuel_node|grep controller|awk '{print $10}'))
compute_ips=($(cat fuel_node|grep compute|awk '{print $10}'))
- pod_yaml="/etc/yardstick/nodes/fuel_baremetal/pod.yaml"
+ pod_yaml="./etc/yardstick/nodes/fuel_baremetal/pod.yaml"
if [[ ${controller_ips[0]} ]]; then
sed -i "s/ip1/${controller_ips[0]}/" $pod_yaml;