Apex, Functest: Fixes ssh options when copying Apex stackrc
[releng.git] / jjb / functest / set-functest-env.sh
1 #!/bin/bash
2
3 set -e
4 [[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
5 # labconfig is used only for joid
6 labconfig=""
7 if [[ ${INSTALLER_TYPE} == 'apex' ]]; then
8     ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
9     if sudo virsh list | grep instack; then
10         instack_mac=$(sudo virsh domiflist instack | grep default | \
11                       grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
12     elif sudo virsh list | grep undercloud; then
13         instack_mac=$(sudo virsh domiflist undercloud | grep default | \
14                       grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
15     else
16         echo "No available installer VM exists...exiting"
17         exit 1
18     fi
19     INSTALLER_IP=$(/usr/sbin/arp -e | grep ${instack_mac} | awk {'print $1'})
20     sshkey="-v /root/.ssh/id_rsa:/root/.ssh/id_rsa"
21     sudo scp $ssh_options root@${INSTALLER_IP}:/home/stack/stackrc .
22     stackrc="-v ./stackrc:/home/opnfv/functest/conf/stackrc"
23
24     if sudo iptables -C FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable 2> ${redirect}; then
25         sudo iptables -D FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable
26     fi
27     if sudo iptables -C FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable 2> ${redirect}; then
28         sudo iptables -D FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable
29     fi
30 elif [[ ${INSTALLER_TYPE} == 'joid' ]]; then
31     # If production lab then creds may be retrieved dynamically
32     # creds are on the jumphost, always in the same folder
33     labconfig="-v $LAB_CONFIG/admin-openrc:/home/opnfv/functest/conf/openstack.creds"
34     # If dev lab, credentials may not be the default ones, just provide a path to put them into docker
35     # replace the default one by the customized one provided by jenkins config
36 fi
37 echo "Functest: Start Docker and prepare environment"
38 envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} \
39     -e NODE_NAME=${NODE_NAME} -e DEPLOY_SCENARIO=${DEPLOY_SCENARIO} \
40     -e BUILD_TAG=${BUILD_TAG} -e CI_DEBUG=${CI_DEBUG}"
41 branch=${GIT_BRANCH##*/}
42 dir_result="${HOME}/opnfv/functest/results/${branch}"
43 mkdir -p ${dir_result}
44 sudo rm -rf ${dir_result}/*
45 res_volume="-v ${dir_result}:/home/opnfv/functest/results"
46 custom_params=
47 test -f ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG} && custom_params=$(cat ${HOME}/opnfv/functest/custom/params_${DOCKER_TAG})
48
49 echo "Functest: Pulling image opnfv/functest:${DOCKER_TAG}"
50 docker pull opnfv/functest:$DOCKER_TAG >/dev/null
51
52 cmd="sudo docker run --privileged=true -id ${envs} ${labconfig} ${sshkey} ${res_volume} ${custom_params} ${stackrc} opnfv/functest:${DOCKER_TAG} /bin/bash"
53 echo "Functest: Running docker run command: ${cmd}"
54 ${cmd} >${redirect}
55 sleep 5
56 container_id=$(docker ps | grep "opnfv/functest:${DOCKER_TAG}" | awk '{print $1}' | head -1)
57 echo "Container ID=${container_id}"
58 if [ -z ${container_id} ]; then
59     echo "Cannot find opnfv/functest container ID ${container_id}. Please check if it is existing."
60     docker ps -a
61     exit 1
62 fi
63 echo "Starting the container: docker start ${container_id}"
64 docker start ${container_id}
65 sleep 5
66 docker ps >${redirect}
67 if [ $(docker ps | grep "opnfv/functest:${DOCKER_TAG}" | wc -l) == 0 ]; then
68     echo "The container opnfv/functest with ID=${container_id} has not been properly started. Exiting..."
69     exit 1
70 fi
71 if [[ ${branch} == *"brahmaputra"* ]]; then
72     cmd="${FUNCTEST_REPO_DIR}/docker/prepare_env.sh"
73 else
74     cmd="python ${FUNCTEST_REPO_DIR}/ci/prepare_env.py start"
75 fi
76 echo "Executing command inside the docker: ${cmd}"
77 docker exec ${container_id} ${cmd}