diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-08-29 15:40:52 +0200 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-08-30 14:41:00 +0200 |
commit | 3cb19c7b5c64fb3d3fc136f1f1bbf32f92399312 (patch) | |
tree | 93ee6977ea68539482284867c586d45e305aebb5 /tests/ci/prepare_env.sh | |
parent | 27e254c2273e4be503053db882948b8abf53b269 (diff) |
Change executed test cases for bgpvpn scenarios
Due to lacking support for floating IPs in ODL VPNService,
the default test cases fail.
The replaced test cases are:
opnfv_yardstick_tc043.yaml(Node ping test)
opnfv_yardstick_tc019.yaml(Node HA test)
Change-Id: Ib829430e00488697dc7543ea7143026dc68ff834
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'tests/ci/prepare_env.sh')
-rwxr-xr-x | tests/ci/prepare_env.sh | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/ci/prepare_env.sh b/tests/ci/prepare_env.sh index d9f8257ae..8c0a8badc 100755 --- a/tests/ci/prepare_env.sh +++ b/tests/ci/prepare_env.sh @@ -83,5 +83,29 @@ if [ "$INSTALLER_TYPE" == "fuel" ]; then echo "Fetching id_rsa file from jump_server $INSTALLER_IP..." sshpass -p r00tme scp 2>/dev/null $ssh_options \ root@${INSTALLER_IP}:~/.ssh/id_rsa /root/.ssh/id_rsa &> /dev/null -fi + sshpass -p r00tme ssh 2>/dev/null $ssh_options \ + root@${INSTALLER_IP} fuel node>fuel_node + + 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" + + if [[ ${controller_ips[0]} ]]; then + sed -i "s/ip1/${controller_ips[0]}/" $pod_yaml; + fi + if [[ ${controller_ips[1]} ]]; then + sed -i "s/ip2/${controller_ips[1]}/" $pod_yaml; + fi + if [[ ${controller_ips[2]} ]]; then + sed -i "s/ip3/${controller_ips[2]}/" $pod_yaml; + fi + if [[ ${compute_ips[0]} ]]; then + sed -i "s/ip4/${compute_ips[0]}/" $pod_yaml; + fi + if [[ ${compute_ips[1]} ]]; then + sed -i "s/ip5/${compute_ips[1]}/" $pod_yaml; + fi + +fi |