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