Merge "ansible: fix urlsplit('hostname') in convert_openrc"
[yardstick.git] / tests / ci / prepare_env.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB, Huawei Technologies Co.,Ltd and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # Perepare the environment to run yardstick ci
12
13 : ${DEPLOY_TYPE:='bm'} # Can be any of 'bm' (Bare Metal) or 'virt' (Virtual)
14 : ${INSTALLER_TYPE:='unknown'}
15 : ${NODE_NAME:='unknown'}
16 : ${EXTERNAL_NETWORK:='admin_floating_net'}
17 : ${USER_NAME:='ubuntu'}
18 : ${SSH_KEY:='/root/.ssh/id_rsa'}
19
20 # Extract network name from EXTERNAL_NETWORK
21 #  e.g. EXTERNAL_NETWORK='ext-net;flat;192.168.0.2;192.168.0.253;192.168.0.1;192.168.0.0/24'
22 EXTERNAL_NETWORK=$(echo ${EXTERNAL_NETWORK} | cut -f1 -d \;)
23 export EXTERNAL_NETWORK
24
25 # Create openstack credentials
26 echo "INFO: Creating openstack credentials .."
27 mkdir -p /etc/yardstick
28 OPENRC=/etc/yardstick/openstack.creds
29 INSTALLERS=(apex compass fuel joid)
30
31 RC_VAR_EXIST=false
32 if [[ "${OS_AUTH_URL}" && "${OS_USERNAME}" && "${OS_PASSWORD}" && "${EXTERNAL_NETWORK}" ]];then
33     RC_VAR_EXIST=true
34 fi
35
36 if [[ "${RC_VAR_EXIST}" = false && -f ${OPENRC} ]]; then
37     . ${OPENRC}
38 fi
39
40 export EXTERNAL_NETWORK INSTALLER_TYPE DEPLOY_TYPE NODE_NAME
41
42 # Prepare a admin-rc file for StorPerf integration
43 "${YARDSTICK_REPO_DIR}"/tests/ci/prepare_storperf_admin-rc.sh
44
45 # copy Storperf related files to the deployment location
46 if [ "$INSTALLER_TYPE" == "compass" ]; then
47     . "${YARDSTICK_REPO_DIR}"/tests/ci/scp_storperf_files.sh
48 fi
49
50 # Fetching id_rsa file from jump_server..."
51 verify_connectivity() {
52     local ip=$1
53     echo "Verifying connectivity to $ip..."
54     for i in $(seq 0 10); do
55         if ping -c 1 -W 1 "${ip}" > /dev/null; then
56             echo "$ip is reachable!"
57             return 0
58         fi
59         sleep 1
60     done
61     error "Can not talk to $ip."
62 }
63
64 ssh_options="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
65
66 if [ "$INSTALLER_TYPE" == "fuel" ]; then
67
68     # check the connection
69     verify_connectivity "${INSTALLER_IP}"
70
71     pod_yaml="$YARDSTICK_REPO_DIR/etc/yardstick/nodes/fuel_baremetal/pod.yaml"
72
73     # update "ip" according to the CI env
74     ssh -l ubuntu "${INSTALLER_IP}" -i ${SSH_KEY} ${ssh_options} \
75          "sudo salt -C 'ctl* or cmp*' grains.get fqdn_ip4  --out yaml">node_info
76
77     controller_ips=($(awk '/ctl/{getline; print $2} < node_info'))
78     compute_ips=($(awk '/cmp/{getline; print $2} < node_info'))
79
80     if [[ ${controller_ips[0]} ]]; then
81         sed -i "s|ip1|${controller_ips[0]}|" "${pod_yaml}"
82     fi
83     if [[ ${controller_ips[1]} ]]; then
84         sed -i "s|ip2|${controller_ips[1]}|" "${pod_yaml}"
85     fi
86     if [[ ${controller_ips[2]} ]]; then
87         sed -i "s|ip3|${controller_ips[2]}|" "${pod_yaml}"
88     fi
89     if [[ ${compute_ips[0]} ]]; then
90         sed -i "s|ip4|${compute_ips[0]}|" "${pod_yaml}"
91     fi
92     if [[ ${compute_ips[1]} ]]; then
93         sed -i "s|ip5|${compute_ips[1]}|" "${pod_yaml}"
94     fi
95
96     # update 'user' and 'key_filename' according to the CI env
97     sed -i "s|node_username|${USER_NAME}|;s|node_keyfile|${SSH_KEY}|" "${pod_yaml}"
98
99 fi