4356f5721c84d8625b5ba55cdadf3733a209ac0a
[releng/builder.git] / jjb / integration / integration-get-slave-addresses.sh
1 #!/bin/bash
2 # Get the Controller and Tools VM slave addresses
3
4 set -x
5
6 ODL_SYSTEM=()
7 TOOLS_SYSTEM=()
8 OPENSTACK_SYSTEM=()
9 OPENSTACK_CONTROLLERS=()
10 [ "$NUM_OPENSTACK_SITES" ] || NUM_OPENSTACK_SITES=1
11
12 OPENSTACK_VENV="/tmp/v/openstack"
13 # shellcheck source=/tmp/v/openstack/bin/activate disable=SC1091
14 source $OPENSTACK_VENV/bin/activate
15 # shellcheck disable=SC2207
16 ADDR=($(openstack stack show -f json -c outputs "$STACK_NAME" | \
17        jq -r '.outputs[] | select(.output_key | match("^vm_[0-9]+_ips$")) | .output_value | .[]'))
18
19 # The next two blocks of code will parse the list of vm IP's hostnames to determine which type of node
20 # the vm is: odl, devstack controller or compute, ha_proxy or tools. For the odl node's the hsotname will contain
21 # java in the name. The tools nodes are anything left after odl and devstack nodes have been found.
22 #
23 # The devstack nodes are identified with devstack in the hostname but require more checks to determine the controller
24 # node. Heat names the vms as devstack-<index> with index starting at 0. The vms are created in groups of which
25 # the openstack jobs create a vm_1_group for the controller and vm_2_group for the other vms such as the compute
26 # and ha_proxy nodes. The list of IP addresses for all the created vms is returned in reverse order of the group
27 # creation, but ordered within the group. I.E vm_1_group will be created first and named devstack-0, followed by
28 # vm_2_group and named devstack-0, devstack-1 and devstack-2. The list of IPs will be: devstack-0 (vm_2_group, compute),
29 # devstack-1, devstack-2, devstack-0 (vm_1_group, controller). Notice both the compute and first control node are both
30 # named devstack-0. We know the controller because it would be last in the list of IPs. This first block of code will
31 # produce two lists: one for the list of potential controllers and the second is a list of all devstack nodes.
32
33 for i in "${ADDR[@]}"
34 do
35     REMHOST=$(ssh "${i}" hostname -s)
36     case ${REMHOST} in
37     *builder*)
38        ODL_SYSTEM=( "${ODL_SYSTEM[@]}" "${i}" )
39        ;;
40     *devstack*)
41        # track potential controllers which would have -0 at the end of the hostname
42        if [[ ${REMHOST: -2} == "-0" ]]; then
43           OPENSTACK_CONTROLLERS=( "${OPENSTACK_CONTROLLERS[@]}" "${i}" )
44        fi
45
46        OPENSTACK_SYSTEM=( "${OPENSTACK_SYSTEM[@]}" "${i}" )
47        ;;
48     *)
49        TOOLS_SYSTEM=( "${TOOLS_SYSTEM[@]}" "${i}" )
50        ;;
51     esac
52 done
53
54 echo "NUM_ODL_SYSTEM=${#ODL_SYSTEM[@]}" >> slave_addresses.txt
55 echo "NUM_TOOLS_SYSTEM=${#TOOLS_SYSTEM[@]}" >> slave_addresses.txt
56 #if HA Proxy is requested the last devstack node will be configured as haproxy
57 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
58    # HA Proxy is installed on one OPENSTACK_SYSTEM VM on each site
59    NUM_OPENSTACK_SYSTEM=$(( ${#OPENSTACK_SYSTEM[@]} - NUM_OPENSTACK_SITES ))
60 else
61    NUM_OPENSTACK_SYSTEM=${#OPENSTACK_SYSTEM[@]}
62 fi
63 echo "NUM_OPENSTACK_SYSTEM=${NUM_OPENSTACK_SYSTEM}" >> slave_addresses.txt
64
65 # Rearrange the devstack node list to place the controller at the beginning of the list. The later code expects
66 # the list to be ordered with controller first followed by other types.
67 #
68 # At this point there is a list of potential devstack controllers as: devstack-0 (vm_2_group, compute),
69 # devstack-0 (vm_1_group, controller) and there is the full list with other compute or ha_proxy nodes in the middle.
70 # We know the controller is at the end of the devstack nodes list based on the ordering described above. Swap that entry
71 # with the first entry.
72 if [ ${#OPENSTACK_CONTROLLERS[@]} -eq 2 ]; then
73     ctrl_index=${#OPENSTACK_SYSTEM[@]}
74     ctrl_index=$((ctrl_index -1))
75     tmp_addr=${OPENSTACK_SYSTEM[0]}
76     OPENSTACK_SYSTEM[0]=${OPENSTACK_SYSTEM[$ctrl_index]}
77     OPENSTACK_SYSTEM[$ctrl_index]=$tmp_addr
78 fi
79
80 # Add alias for ODL_SYSTEM_1_IP as ODL_SYSTEM_IP
81 echo "ODL_SYSTEM_IP=${ODL_SYSTEM[0]}" >> slave_addresses.txt
82 for i in $(seq 0 $(( ${#ODL_SYSTEM[@]} - 1 )))
83 do
84     echo "ODL_SYSTEM_$((i+1))_IP=${ODL_SYSTEM[${i}]}" >> slave_addresses.txt
85 done
86
87 # Add alias for TOOLS_SYSTEM_1_IP as TOOLS_SYSTEM_IP
88 echo "TOOLS_SYSTEM_IP=${TOOLS_SYSTEM[0]}" >> slave_addresses.txt
89 for i in $(seq 0 $(( ${#TOOLS_SYSTEM[@]} - 1 )))
90 do
91     echo "TOOLS_SYSTEM_$((i+1))_IP=${TOOLS_SYSTEM[${i}]}" >> slave_addresses.txt
92 done
93
94 openstack_index=0
95 # Assuming number of openstack control nodes equals number of openstack sites
96 NUM_OPENSTACK_CONTROL_NODES=$(( NUM_OPENSTACK_SITES ))
97 echo "NUM_OPENSTACK_CONTROL_NODES=${NUM_OPENSTACK_CONTROL_NODES}" >> slave_addresses.txt
98 for i in $(seq 0 $((NUM_OPENSTACK_CONTROL_NODES - 1)))
99 do
100     echo "OPENSTACK_CONTROL_NODE_$((i+1))_IP=${OPENSTACK_SYSTEM[$((openstack_index++))]}" >> slave_addresses.txt
101 done
102
103 # The rest of the openstack nodes until NUM_OPENSTACK_SYSTEM are computes
104 NUM_OPENSTACK_COMPUTE_NODES=$(( NUM_OPENSTACK_SYSTEM - NUM_OPENSTACK_CONTROL_NODES ))
105 echo "NUM_OPENSTACK_COMPUTE_NODES=${NUM_OPENSTACK_COMPUTE_NODES}" >> slave_addresses.txt
106
107 # Order the computes in the list so that the devstack-0 is index 1 and devstack-1 is index 2. Currently they are
108 # backwards because of the controller swap earlier.
109 if [ ${NUM_OPENSTACK_COMPUTE_NODES} -ge 2 ]; then
110     tmp_addr=${OPENSTACK_SYSTEM[1]}
111     OPENSTACK_SYSTEM[1]=${OPENSTACK_SYSTEM[2]}
112     OPENSTACK_SYSTEM[2]=${tmp_addr}
113 fi
114
115 for i in $(seq 0 $((NUM_OPENSTACK_COMPUTE_NODES - 1)))
116 do
117     echo "OPENSTACK_COMPUTE_NODE_$((i+1))_IP=${OPENSTACK_SYSTEM[$((openstack_index++))]}" >> slave_addresses.txt
118 done
119
120 # The remaining openstack nodes are haproxy nodes (for ODL cluster)
121 NUM_OPENSTACK_HAPROXY_NODES=$(( ${#OPENSTACK_SYSTEM[@]} - NUM_OPENSTACK_SYSTEM ))
122 echo "NUM_OPENSTACK_HAPROXY_NODES=${NUM_OPENSTACK_HAPROXY_NODES}" >> slave_addresses.txt
123 for i in $(seq 0 $((NUM_OPENSTACK_HAPROXY_NODES - 1)))
124 do
125     echo "OPENSTACK_HAPROXY_$((i+1))_IP=${OPENSTACK_SYSTEM[$((openstack_index++))]}" >> slave_addresses.txt
126 done
127 echo "Contents of slave_addresses.txt:"
128 cat slave_addresses.txt
129 # vim: sw=4 ts=4 sts=4 et ft=sh :