Install odltools for all robot jobs
[releng/builder.git] / jjb / integration / integration-deploy-openstack-run-test.sh
1 #!/bin/bash
2 # Activate robotframework virtualenv
3 # ${ROBOT_VENV} comes from the integration-install-robotframework.sh
4 # script.
5 # shellcheck source=${ROBOT_VENV}/bin/activate disable=SC1091
6 source ${ROBOT_VENV}/bin/activate
7 source /tmp/common-functions.sh ${BUNDLEFOLDER}
8 # Ensure we fail the job if any steps fail.
9 set -ex -o pipefail
10 totaltmr=$(timer)
11 get_os_deploy
12
13 PYTHON="${ROBOT_VENV}/bin/python"
14 SSH="ssh -t -t"
15 ADMIN_PASSWORD="admin"
16 OPENSTACK_MASTER_CLIENTS_VERSION="queens"
17
18 # TODO: remove this work to run changes.py if/when it's moved higher up to be visible at the Robot level
19 printf "\nshowing recent changes that made it into the distribution used by this job:\n"
20 $PYTHON -m pip install --upgrade urllib3
21 python ${WORKSPACE}/test/tools/distchanges/changes.py -d /tmp/distribution_folder \
22                   -u ${ACTUAL_BUNDLE_URL} -b ${DISTROBRANCH} \
23                   -r ssh://jenkins-${SILO}@git.opendaylight.org:29418 || true
24
25 printf "\nshowing recent changes that made it into integration/test used by this job:\n"
26 cd ${WORKSPACE}/test
27 printf "Hash    Author Date                    Commit Date                    Author               Subject\n"
28 printf "%s\n" "------- ------------------------------ ------------------------------ -------------------- -----------------------------"
29 git --no-pager log --pretty=format:'%h %<(30)%ad %<(30)%cd %<(20,trunc)%an%d %s' -n20
30 printf "\n"
31 cd -
32
33 cat << EOF
34 #################################################
35 ##         Deploy Openstack 3-node             ##
36 #################################################
37 EOF
38
39 # Catch command errors and collect logs.
40 # This ensures logs are collected when script commands fail rather than simply exiting.
41 function trap_handler() {
42     local prog="$0"
43     local lastline="$1"
44     local lasterr="$2"
45     echo "trap_handler: ${prog}: line ${lastline}: exit status of last command: ${lasterr}"
46     echo "trap_handler: command: ${BASH_COMMAND}"
47     exit 1
48 } # trap_handler()
49
50 trap 'trap_handler ${LINENO} ${$?}' ERR
51
52 print_job_parameters
53
54 function create_etc_hosts() {
55     NODE_IP=$1
56     CTRL_IP=$2
57     : > ${WORKSPACE}/hosts_file
58     for iter in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
59         COMPUTE_IP=OPENSTACK_COMPUTE_NODE_${iter}_IP
60         if [ "${!COMPUTE_IP}" == "${NODE_IP}" ]; then
61            CONTROL_HNAME=$(${SSH}  ${CTRL_IP}  "hostname")
62            echo "${CTRL_IP}   ${CONTROL_HNAME}" >> ${WORKSPACE}/hosts_file
63         else
64            COMPUTE_HNAME=$(${SSH}  ${!COMPUTE_IP}  "hostname")
65            echo "${!COMPUTE_IP}   ${COMPUTE_HNAME}" >> ${WORKSPACE}/hosts_file
66         fi
67     done
68
69     echo "Created the hosts file for ${NODE_IP}:"
70     cat ${WORKSPACE}/hosts_file
71 } # create_etc_hosts()
72
73 #function to install Openstack Clients for Testing
74 #This will pull the latest versions compatiable with the
75 # openstack release
76 function install_openstack_clients_in_robot_vm() {
77     packages=("python-novaclient" "python-neutronclient" "python-openstackclient")
78     local os_plugins
79     os_plugins=$(csv2ssv "${ENABLE_OS_PLUGINS}")
80     for plugin_name in $os_plugins; do
81         if [ "$plugin_name" == "networking-sfc" ]; then
82             packages+=("networking-sfc")
83         fi
84     done
85     openstack_version=$(echo ${OPENSTACK_BRANCH} | cut -d/ -f2)
86     #If the job tests "master", we will use the clients from previous released stable version to avoid failures
87     if [ "${openstack_version}" == "master" ]; then
88        openstack_version=${OPENSTACK_MASTER_CLIENTS_VERSION}
89     fi
90     for package in ${packages[*]}; do
91        echo "Get the current support version of the package ${package}"
92        wget https://raw.githubusercontent.com/openstack/requirements/stable/${openstack_version}/upper-constraints.txt -O /tmp/constraints.txt 2>/dev/null
93        echo "$PYTHON -m pip install --upgrade --no-deps ${package} --no-cache-dir -c /tmp/constraints.txt"
94        $PYTHON -m pip install --upgrade --no-deps ${package} --no-cache-dir -c /tmp/constraints.txt
95        echo "$PYTHON -m pip install ${package} --no-cache-dir -c /tmp/constraints.txt"
96        $PYTHON -m pip install ${package} --no-cache-dir -c /tmp/constraints.txt
97     done
98
99     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
100         #networking-l2gw is not officially available in any release yet. Getting the latest stable version.
101         $PYTHON -m pip install networking-l2gw==11.0.0
102     fi
103 }
104
105 #Function to install rdo release
106 # This will help avoiding installing wrong version of packages which causes
107 # functionality failures
108 function install_rdo_release() {
109     local ip=$1
110     case ${OPENSTACK_BRANCH} in
111        *pike*)
112           ${SSH} ${ip} "sudo yum install -y https://repos.fedorapeople.org/repos/openstack/openstack-pike/rdo-release-pike-1.noarch.rpm"
113           ;;
114
115        *queens*)
116           ${SSH} ${ip} "sudo yum install -y https://repos.fedorapeople.org/repos/openstack/openstack-queens/rdo-release-queens-1.noarch.rpm"
117           ;;
118
119        master)
120           ${SSH} ${ip} "sudo yum install -y https://repos.fedorapeople.org/repos/openstack/openstack-queens/rdo-release-queens-1.noarch.rpm"
121           ;;
122     esac
123 }
124
125 # Involves just setting up the shared directory
126 function setup_live_migration_control() {
127     local control_ip=$1
128     printf "${control_ip}:Setup directory Share with NFS"
129     cat > ${WORKSPACE}/setup_live_migration_control.sh << EOF
130 sudo mkdir --mode=777 /vm_instances
131 sudo chown -R jenkins:jenkins /vm_instances
132 sudo yum install -y nfs-utils
133 printf "/vm_instances *(rw,no_root_squash)" | sudo tee -a /etc/exports
134 sudo systemctl start rpcbind nfs-server
135 sudo exportfs
136 EOF
137     scp ${WORKSPACE}/setup_live_migration_control.sh ${control_ip}:/tmp/setup_live_migration_control.sh
138     ssh ${control_ip} "bash /tmp/setup_live_migration_control.sh"
139 }
140
141 # Involves mounting the share and configuring the libvirtd
142 function setup_live_migration_compute() {
143     local compute_ip=$1
144     local control_ip=$2
145     printf "${compute_ip}:Mount Shared directory from ${control_ip}"
146     printf "${compute_ip}:Configure libvirt in listen mode"
147     cat >  ${WORKSPACE}/setup_live_migration_compute.sh << EOF
148 sudo yum install -y libvirt libvirt-devel nfs-utils
149 sudo crudini --verbose  --set --inplace /etc/libvirt/libvirtd.conf '' listen_tls 0
150 sudo crudini --verbose  --set --inplace /etc/libvirt/libvirtd.conf '' listen_tcp 1
151 sudo crudini --verbose  --set --inplace /etc/libvirt/libvirtd.conf '' auth_tcp '"none"'
152 sudo crudini --verbose  --set --inplace /etc/sysconfig/libvirtd '' LIBVIRTD_ARGS '"--listen"'
153 sudo mkdir --mode=777 -p /var/instances
154 sudo chown -R jenkins:jenkins /var/instances
155 sudo chmod o+x /var/instances
156 sudo systemctl start rpcbind
157 sudo mount -t nfs ${control_ip}:/vm_instances /var/instances
158 sudo mount
159 EOF
160     scp ${WORKSPACE}/setup_live_migration_compute.sh ${compute_ip}:/tmp/setup_live_migration_compute.sh
161     ssh ${compute_ip} "bash /tmp/setup_live_migration_compute.sh"
162 }
163
164 # Add enable_services and disable_services to the local.conf
165 function add_os_services() {
166     local core_services=$1
167     local enable_services=$2
168     local disable_services=$3
169     local local_conf_file_name=$4
170     local enable_network_services=$5
171
172     cat >> ${local_conf_file_name} << EOF
173 enable_service $(csv2ssv "${core_services}")
174 EOF
175     if [ -n "${enable_services}" ]; then
176         cat >> ${local_conf_file_name} << EOF
177 enable_service $(csv2ssv "${enable_services}")
178 EOF
179     fi
180     if [ -n "${disable_services}" ]; then
181         cat >> ${local_conf_file_name} << EOF
182 disable_service $(csv2ssv "${disable_services}")
183 EOF
184     fi
185     if [ -n "${enable_network_services}" ]; then
186         cat >> ${local_conf_file_name} << EOF
187 enable_service $(csv2ssv "${enable_network_services}")
188 EOF
189     fi
190 }
191
192 function create_control_node_local_conf() {
193     HOSTIP=$1
194     MGRIP=$2
195     ODL_OVS_MANAGERS="$3"
196
197     local_conf_file_name=${WORKSPACE}/local.conf_control_${HOSTIP}
198     cat > ${local_conf_file_name} << EOF
199 [[local|localrc]]
200 LOGFILE=stack.sh.log
201 LOG_COLOR=False
202 USE_SYSTEMD=True
203 RECLONE=${RECLONE}
204 # Increase the wait used by stack to poll for services
205 SERVICE_TIMEOUT=120
206
207 disable_all_services
208 EOF
209
210     add_os_services "${CORE_OS_CONTROL_SERVICES}" "${ENABLE_OS_SERVICES}" "${DISABLE_OS_SERVICES}" "${local_conf_file_name}" "${ENABLE_OS_NETWORK_SERVICES}"
211
212     cat >> ${local_conf_file_name} << EOF
213
214 HOST_IP=${HOSTIP}
215 SERVICE_HOST=\$HOST_IP
216 Q_ML2_TENANT_NETWORK_TYPE=${TENANT_NETWORK_TYPE}
217 NEUTRON_CREATE_INITIAL_NETWORKS=${CREATE_INITIAL_NETWORKS}
218
219 ODL_MODE=manual
220 ODL_MGR_IP=${MGRIP}
221 ODL_PORT=${ODL_PORT}
222 ODL_PORT_BINDING_CONTROLLER=${ODL_ML2_PORT_BINDING}
223 ODL_OVS_MANAGERS=${ODL_OVS_MANAGERS}
224
225 MYSQL_HOST=\$SERVICE_HOST
226 RABBIT_HOST=\$SERVICE_HOST
227 GLANCE_HOSTPORT=\$SERVICE_HOST:9292
228 KEYSTONE_AUTH_HOST=\$SERVICE_HOST
229 KEYSTONE_SERVICE_HOST=\$SERVICE_HOST
230
231 ADMIN_PASSWORD=${ADMIN_PASSWORD}
232 DATABASE_PASSWORD=${ADMIN_PASSWORD}
233 RABBIT_PASSWORD=${ADMIN_PASSWORD}
234 SERVICE_TOKEN=${ADMIN_PASSWORD}
235 SERVICE_PASSWORD=${ADMIN_PASSWORD}
236
237 NEUTRON_LBAAS_SERVICE_PROVIDERV2=${LBAAS_SERVICE_PROVIDER} # Only relevant if neutron-lbaas plugin is enabled
238 NEUTRON_SFC_DRIVERS=${ODL_SFC_DRIVER} # Only relevant if networking-sfc plugin is enabled
239 NEUTRON_FLOWCLASSIFIER_DRIVERS=${ODL_SFC_DRIVER} # Only relevant if networking-sfc plugin is enabled
240 ETCD_PORT=2379
241 PUBLIC_BRIDGE=${PUBLIC_BRIDGE}
242 PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK}
243 ML2_VLAN_RANGES=${PUBLIC_PHYSICAL_NETWORK}
244 ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS}
245 EOF
246     if [ "${TENANT_NETWORK_TYPE}" == "local" ]; then
247         cat >> ${local_conf_file_name} << EOF
248 ENABLE_TENANT_TUNNELS=false
249 EOF
250     fi
251
252     if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then
253         echo "ODL_V2DRIVER=True" >> ${local_conf_file_name}
254     fi
255     IFS=,
256     for plugin_name in ${ENABLE_OS_PLUGINS}; do
257         if [ "$plugin_name" == "networking-odl" ]; then
258             ENABLE_PLUGIN_ARGS="${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH}"
259         elif [ "$plugin_name" == "kuryr-kubernetes" ]; then
260             ENABLE_PLUGIN_ARGS="${DEVSTACK_KUBERNETES_PLUGIN_REPO} master" # note: kuryr-kubernetes only exists in master at the moment
261         elif [ "$plugin_name" == "neutron-lbaas" ]; then
262             ENABLE_PLUGIN_ARGS="${DEVSTACK_LBAAS_PLUGIN_REPO} ${OPENSTACK_BRANCH}"
263             IS_LBAAS_PLUGIN_ENABLED="yes"
264         elif [ "$plugin_name" == "networking-sfc" ]; then
265             ENABLE_PLUGIN_ARGS="${DEVSTACK_NETWORKING_SFC_PLUGIN_REPO} ${OPENSTACK_BRANCH}"
266             IS_SFC_PLUGIN_ENABLED="yes"
267         else
268             echo "Error: Invalid plugin $plugin_name, unsupported"
269             continue
270         fi
271         cat >> ${local_conf_file_name} << EOF
272
273 enable_plugin ${plugin_name} ${ENABLE_PLUGIN_ARGS}
274 EOF
275     done
276     unset IFS
277
278     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
279         cat >> ${local_conf_file_name} << EOF
280
281 enable_plugin networking-l2gw ${NETWORKING_L2GW_DRIVER} ${ODL_ML2_BRANCH}
282 NETWORKING_L2GW_SERVICE_DRIVER=L2GW:OpenDaylight:networking_odl.l2gateway.driver_v2.OpenDaylightL2gwDriver:default
283 EOF
284     fi
285
286     if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then
287        SERVICE_PLUGINS="odl-router_v2"
288     else
289        SERVICE_PLUGINS="odl-router"
290     fi
291     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
292         SERVICE_PLUGINS+=", networking_l2gw.services.l2gateway.plugin.L2GatewayPlugin"
293     fi
294     if [ "${IS_LBAAS_PLUGIN_ENABLED}" == "yes" ]; then
295         SERVICE_PLUGINS+=", lbaasv2"
296     fi
297     if [ "${IS_SFC_PLUGIN_ENABLED}" == "yes" ]; then
298         SERVICE_PLUGINS+=", networking_sfc.services.flowclassifier.plugin.FlowClassifierPlugin,networking_sfc.services.sfc.plugin.SfcPlugin"
299     fi
300
301     cat >> ${local_conf_file_name} << EOF
302
303 [[post-config|\$NEUTRON_CONF]]
304 [DEFAULT]
305 service_plugins = ${SERVICE_PLUGINS}
306 log_dir = /opt/stack/logs
307
308 [[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
309 [agent]
310 minimize_polling=True
311
312 [ml2]
313 # Needed for VLAN provider tests - because our provider networks are always encapsulated in VXLAN (br-physnet1)
314 # MTU(1400) + VXLAN(50) + VLAN(4) = 1454 < MTU eth0/br-physnet1(1458)
315 physical_network_mtus = ${PUBLIC_PHYSICAL_NETWORK}:1400
316 path_mtu = 1458
317 EOF
318
319     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
320         cat >> ${local_conf_file_name} << EOF
321
322 [ml2_odl]
323 enable_dhcp_service = True
324 EOF
325     fi
326
327     cat >> ${local_conf_file_name} << EOF
328
329 [ml2_odl]
330 # Trigger n-odl full sync every 30 secs.
331 maintenance_interval = 30
332
333 [[post-config|/etc/neutron/dhcp_agent.ini]]
334 [DEFAULT]
335 force_metadata = True
336 enable_isolated_metadata = True
337 log_dir = /opt/stack/logs
338
339 [[post-config|/etc/nova/nova.conf]]
340 [scheduler]
341 discover_hosts_in_cells_interval = 30
342
343 [DEFAULT]
344 force_config_drive = False
345 force_raw_images = False
346 log_dir = /opt/stack/logs
347
348 EOF
349
350     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
351         cat >> ${local_conf_file_name} << EOF
352 use_neutron = True
353 force_raw_images = False
354 log_dir = /opt/stack/logs
355 [libvirt]
356 live_migration_uri = qemu+tcp://%s/system
357 virt_type = qemu
358 EOF
359     fi
360
361     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
362         echo "Combo local.conf created:"
363     else
364         echo "Control local.conf created:"
365     fi
366     cat ${local_conf_file_name}
367 } # create_control_node_local_conf()
368
369 function create_compute_node_local_conf() {
370     HOSTIP=$1
371     SERVICEHOST=$2
372     MGRIP=$3
373     ODL_OVS_MANAGERS="$4"
374
375     local_conf_file_name=${WORKSPACE}/local.conf_compute_${HOSTIP}
376     cat > ${local_conf_file_name} << EOF
377 [[local|localrc]]
378 LOGFILE=stack.sh.log
379 LOG_COLOR=False
380 USE_SYSTEMD=True
381 RECLONE=${RECLONE}
382 # Increase the wait used by stack to poll for the nova service on the control node
383 NOVA_READY_TIMEOUT=1800
384
385 disable_all_services
386 EOF
387
388     add_os_services "${CORE_OS_COMPUTE_SERVICES}" "${ENABLE_OS_COMPUTE_SERVICES}" "${DISABLE_OS_SERVICES}" "${local_conf_file_name}"
389
390     cat >> ${local_conf_file_name} << EOF
391 HOST_IP=${HOSTIP}
392 SERVICE_HOST=${SERVICEHOST}
393 Q_ML2_TENANT_NETWORK_TYPE=${TENANT_NETWORK_TYPE}
394
395 ODL_MODE=manual
396 ODL_MGR_IP=${MGRIP}
397 ODL_PORT=${ODL_PORT}
398 ODL_PORT_BINDING_CONTROLLER=${ODL_ML2_PORT_BINDING}
399 ODL_OVS_MANAGERS=${ODL_OVS_MANAGERS}
400
401 Q_HOST=\$SERVICE_HOST
402 MYSQL_HOST=\$SERVICE_HOST
403 RABBIT_HOST=\$SERVICE_HOST
404 GLANCE_HOSTPORT=\$SERVICE_HOST:9292
405 KEYSTONE_AUTH_HOST=\$SERVICE_HOST
406 KEYSTONE_SERVICE_HOST=\$SERVICE_HOST
407
408 ADMIN_PASSWORD=${ADMIN_PASSWORD}
409 DATABASE_PASSWORD=${ADMIN_PASSWORD}
410 RABBIT_PASSWORD=${ADMIN_PASSWORD}
411 SERVICE_TOKEN=${ADMIN_PASSWORD}
412 SERVICE_PASSWORD=${ADMIN_PASSWORD}
413
414 PUBLIC_BRIDGE=${PUBLIC_BRIDGE}
415 PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK}
416 ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS}
417 EOF
418
419     if [[ "${ENABLE_OS_PLUGINS}" =~ networking-odl ]]; then
420         cat >> ${local_conf_file_name} << EOF
421
422 enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH}
423 EOF
424     fi
425
426     cat >> ${local_conf_file_name} << EOF
427
428 [[post-config|/etc/nova/nova.conf]]
429 [api]
430 auth_strategy = keystone
431 [DEFAULT]
432 use_neutron = True
433 force_raw_images = False
434 log_dir = /opt/stack/logs
435 [libvirt]
436 live_migration_uri = qemu+tcp://%s/system
437 virt_type = qemu
438 EOF
439
440     echo "Compute local.conf created:"
441     cat ${local_conf_file_name}
442 } # create_compute_node_local_conf()
443
444 function configure_haproxy_for_neutron_requests() {
445     MGRIP=$1
446     # shellcheck disable=SC2206
447     ODL_IPS=(${2//,/ })
448
449     cat > ${WORKSPACE}/install_ha_proxy.sh<< EOF
450 sudo systemctl stop firewalld
451 sudo yum -y install policycoreutils-python haproxy
452 EOF
453
454 cat > ${WORKSPACE}/haproxy.cfg << EOF
455 global
456   daemon
457   group  haproxy
458   log  /dev/log local0
459   maxconn  20480
460   pidfile  /tmp/haproxy.pid
461   user  haproxy
462
463 defaults
464   log  global
465   maxconn  4096
466   mode  tcp
467   retries  3
468   timeout  http-request 10s
469   timeout  queue 1m
470   timeout  connect 10s
471   timeout  client 1m
472   timeout  server 1m
473   timeout  check 10s
474
475 listen opendaylight
476   bind ${MGRIP}:8080
477   balance source
478
479 listen opendaylight_rest
480   bind ${MGRIP}:8181
481   balance source
482
483 listen opendaylight_websocket
484   bind ${MGRIP}:8185
485   balance source
486
487 EOF
488
489     odlindex=1
490     for odlip in ${ODL_IPS[*]}; do
491         sed -i "/listen opendaylight$/a server controller-${odlindex} ${odlip}:8080 check fall 5 inter 2000 rise 2" ${WORKSPACE}/haproxy.cfg
492         sed -i "/listen opendaylight_rest$/a server controller-rest-${odlindex} ${odlip}:8181 check fall 5 inter 2000 rise 2" ${WORKSPACE}/haproxy.cfg
493         sed -i "/listen opendaylight_websocket$/a server controller-websocket-${odlindex} ${odlip}:8185 check fall 5 inter 2000 rise 2" ${WORKSPACE}/haproxy.cfg
494         odlindex=$((odlindex+1))
495     done
496
497
498     echo "Dump haproxy.cfg"
499     cat ${WORKSPACE}/haproxy.cfg
500
501     cat > ${WORKSPACE}/deploy_ha_proxy.sh<< EOF
502 sudo chown haproxy:haproxy /tmp/haproxy.cfg
503 sudo sed -i 's/\\/etc\\/haproxy\\/haproxy.cfg/\\/tmp\\/haproxy.cfg/g' /usr/lib/systemd/system/haproxy.service
504 sudo /usr/sbin/semanage permissive -a haproxy_t
505 sudo systemctl restart haproxy
506 sleep 3
507 sudo netstat -tunpl
508 sudo systemctl status haproxy
509 true
510 EOF
511
512     scp ${WORKSPACE}/install_ha_proxy.sh ${MGRIP}:/tmp
513     ${SSH} ${MGRIP} "sudo bash /tmp/install_ha_proxy.sh"
514     scp ${WORKSPACE}/haproxy.cfg ${MGRIP}:/tmp
515     scp ${WORKSPACE}/deploy_ha_proxy.sh ${MGRIP}:/tmp
516     ${SSH} ${MGRIP} "sudo bash /tmp/deploy_ha_proxy.sh"
517 } # configure_haproxy_for_neutron_requests()
518
519 # Following three functions are debugging helpers when debugging devstack changes.
520 # Keeping them for now so we can simply call them when needed.
521 ctrlhn=""
522 comp1hn=""
523 comp2hn=""
524 function get_hostnames () {
525     set +e
526     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
527     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
528     local comp2ip=${OPENSTACK_COMPUTE_NODE_2_IP}
529     ctrlhn=$(${SSH} ${ctrlip} "hostname")
530     comp1hn=$(${SSH} ${comp1ip} "hostname")
531     comp2hn=$(${SSH} ${comp2ip} "hostname")
532     echo "hostnames: ${ctrlhn}, ${comp1hn}, ${comp2hn}"
533     set -e
534 }
535
536 function check_firewall() {
537     set +e
538     echo $-
539     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
540     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
541     local comp2ip=${OPENSTACK_COMPUTE_NODE_2_IP}
542
543     echo "check_firewall on control"
544     ${SSH} ${ctrlip} "
545         sudo systemctl status firewalld
546         sudo systemctl -l status iptables
547         sudo iptables --line-numbers -nvL
548     " || true
549     echo "check_firewall on compute 1"
550     ${SSH} ${comp1ip} "
551         sudo systemctl status firewalld
552         sudo systemctl -l status iptables
553         sudo iptables --line-numbers -nvL
554     " || true
555     echo "check_firewall on compute 2"
556     ${SSH} ${comp2ip} "
557         sudo systemctl status firewalld
558         sudo systemctl -l status iptables
559         sudo iptables --line-numbers -nvL
560     " || true
561 }
562
563 function get_service () {
564     set +e
565     local iter=$1
566     #local idx=$2
567     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
568     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
569
570     #if [ ${idx} -eq 1 ]; then
571         if [ ${iter} -eq 1 ] || [ ${iter} -gt 16 ]; then
572             curl http://${ctrlip}:5000
573             curl http://${ctrlip}:35357
574             curl http://${ctrlip}/identity
575             ${SSH} ${ctrlip} "
576                 source /opt/stack/devstack/openrc admin admin;
577                 env
578                 openstack configuration show --unmask;
579                 openstack service list
580                 openstack --os-cloud devstack-admin --os-region RegionOne compute service list
581                 openstack hypervisor list;
582             " || true
583             check_firewall
584         fi
585     #fi
586     set -e
587 }
588
589 # Check if rabbitmq is ready by looking for a pid in it's status.
590 # The function returns the status of the grep command which callers can check.
591 function is_rabbitmq_ready() {
592     local -r ip=${1}
593     local grepfor="nova_cell1"
594     rm -f rabbit.txt
595     ${SSH} ${ip} "sudo rabbitmqctl list_vhosts" > rabbit.txt
596     grep ${grepfor} rabbit.txt
597 }
598
599 # retry the given command ($3) until success for a number of iterations ($1)
600 # sleeping ($2) between tries.
601 function retry() {
602     local -r -i max_tries=${1}
603     local -r -i sleep_time=${2}
604     local -r cmd=${3}
605     local -i retries=1
606     local -i rc=1
607     while true; do
608         echo "retry ${cmd}: attempt: ${retries}"
609         ${cmd}
610         rc=$?
611         if ((${rc} == 0)); then
612             break;
613         else
614             if ((${retries} == ${max_tries})); then
615                 break
616             else
617                 ((retries++))
618                 sleep ${sleep_time}
619             fi
620         fi
621     done
622     return ${rc}
623 }
624
625 ODL_PROVIDER_MAPPINGS="\${PUBLIC_PHYSICAL_NETWORK}:${PUBLIC_BRIDGE}"
626 RECLONE=False
627 ODL_PORT=8181
628
629 # Always compare the lists below against the devstack upstream ENABLED_SERVICES in
630 # https://github.com/openstack-dev/devstack/blob/master/stackrc#L52
631 # ODL CSIT does not use vnc, cinder, q-agt, q-l3 or horizon so they are not included below.
632 # collect performance stats
633 CORE_OS_CONTROL_SERVICES="dstat"
634 # Glance
635 CORE_OS_CONTROL_SERVICES+=",g-api,g-reg"
636 # Keystone
637 CORE_OS_CONTROL_SERVICES+=",key"
638 # Nova - services to support libvirt
639 CORE_OS_CONTROL_SERVICES+=",n-api,n-api-meta,n-cauth,n-cond,n-crt,n-obj,n-sch"
640 # ODL - services to connect to ODL
641 CORE_OS_CONTROL_SERVICES+=",odl-compute,odl-neutron"
642 # Additional services
643 CORE_OS_CONTROL_SERVICES+=",mysql,rabbit"
644
645 # collect performance stats
646 CORE_OS_COMPUTE_SERVICES="dstat"
647 # computes only need nova and odl
648 CORE_OS_COMPUTE_SERVICES+=",n-cpu,odl-compute"
649
650 cat > ${WORKSPACE}/disable_firewall.sh << EOF
651 sudo systemctl stop firewalld
652 # Open these ports to match the tutorial vms
653 # http/https (80/443), samba (445), netbios (137,138,139)
654 sudo iptables -I INPUT -p tcp -m multiport --dports 80,443,139,445 -j ACCEPT
655 sudo iptables -I INPUT -p udp -m multiport --dports 137,138 -j ACCEPT
656 # OpenStack services as well as vxlan tunnel ports 4789 and 9876
657 # identity public/admin (5000/35357), ampq (5672), vnc (6080), nova (8774), glance (9292), neutron (9696)
658 sudo sudo iptables -I INPUT -p tcp -m multiport --dports 5000,5672,6080,8774,9292,9696,35357 -j ACCEPT
659 sudo sudo iptables -I INPUT -p udp -m multiport --dports 4789,9876 -j ACCEPT
660 sudo iptables-save > /etc/sysconfig/iptables
661 sudo systemctl restart iptables
662 sudo iptables --line-numbers -nvL
663 true
664 EOF
665
666 cat > ${WORKSPACE}/get_devstack.sh << EOF
667 sudo systemctl stop firewalld
668 sudo yum install bridge-utils python-pip -y
669 #sudo systemctl stop  NetworkManager
670 #Disable NetworkManager and kill dhclient and dnsmasq
671 sudo systemctl stop NetworkManager
672 sudo killall dhclient
673 sudo killall dnsmasq
674 #Workaround for mysql failure
675 echo "127.0.0.1   localhost \${HOSTNAME}" >> /tmp/hosts
676 echo "::1         localhost \${HOSTNAME}" >> /tmp/hosts
677 sudo mv /tmp/hosts /etc/hosts
678 sudo mkdir /opt/stack
679 echo "Create RAM disk for /opt/stack"
680 sudo mount -t tmpfs -o size=2G tmpfs /opt/stack
681 sudo chmod 777 /opt/stack
682 cd /opt/stack
683 echo "git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}"
684 git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}
685 cd devstack
686 if [ -n "${DEVSTACK_HASH}" ]; then
687     echo "git checkout ${DEVSTACK_HASH}"
688     git checkout ${DEVSTACK_HASH}
689 fi
690 git --no-pager log --pretty=format:'%h %<(13)%ar%<(13)%cr %<(20,trunc)%an%d %s%b' -n20
691 echo
692
693 echo "workaround: do not upgrade openvswitch"
694 sudo yum install -y yum-plugin-versionlock
695 sudo yum versionlock add openvswitch
696
697 #Install qemu-img command in Control Node for Pike
698 echo "Install qemu-img application"
699 sudo yum install -y qemu-img
700 EOF
701
702 cat > "${WORKSPACE}/setup_host_cell_mapping.sh" << EOF
703 sudo nova-manage cell_v2 map_cell0
704 sudo nova-manage cell_v2 simple_cell_setup
705 sudo nova-manage db sync
706 sudo nova-manage cell_v2 discover_hosts
707 EOF
708
709 os_node_list=()
710
711 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
712     echo "Configure HAProxy"
713     ODL_HAPROXYIP_PARAM=OPENSTACK_HAPROXY_${i}_IP
714     ODL_IP_PARAM1=ODL_SYSTEM_1_IP
715     ODL_IP_PARAM2=ODL_SYSTEM_2_IP
716     ODL_IP_PARAM3=ODL_SYSTEM_3_IP
717     ODLMGRIP=${!ODL_HAPROXYIP_PARAM} # ODL Northbound uses HAProxy VIP
718     ODL_OVS_MGRS="${!ODL_IP_PARAM1},${!ODL_IP_PARAM2},${!ODL_IP_PARAM3}" # OVSDB connects to all ODL IPs
719     configure_haproxy_for_neutron_requests ${!ODL_HAPROXYIP_PARAM} "${ODL_OVS_MGRS}"
720 else
721     ODL_IP_PARAM=ODL_SYSTEM_1_IP
722     ODLMGRIP=${!ODL_IP_PARAM} # OVSDB connects to ODL IP
723     ODL_OVS_MGRS="${!ODL_IP_PARAM}" # ODL Northbound uses ODL IP
724 fi
725
726 os_ip_list=()
727 for i in `seq 1 ${NUM_OPENSTACK_CONTROL_NODES}`; do
728     cip=OPENSTACK_CONTROL_NODE_${i}_IP
729     ip=${!cip}
730     os_ip_list+=("${ip}")
731 done
732
733 for i in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
734     cip=OPENSTACK_COMPUTE_NODE_${i}_IP
735     ip=${!cip}
736     os_ip_list+=("${ip}")
737 done
738
739 for i in "${!os_ip_list[@]}"; do
740     ip=${os_ip_list[i]}
741     tcpdump_start "${i}" "${ip}" "port 6653"
742 done
743
744 # Begin stacking the nodes, starting with the controller(s) and then the compute(s)
745
746 for i in `seq 1 ${NUM_OPENSTACK_CONTROL_NODES}`; do
747     CONTROLIP=OPENSTACK_CONTROL_NODE_${i}_IP
748     echo "Configure the stack of the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${!CONTROLIP}"
749     scp ${WORKSPACE}/disable_firewall.sh ${!CONTROLIP}:/tmp
750     ${SSH} ${!CONTROLIP} "sudo bash /tmp/disable_firewall.sh"
751     create_etc_hosts ${!CONTROLIP}
752     scp ${WORKSPACE}/hosts_file ${!CONTROLIP}:/tmp/hosts
753     scp ${WORKSPACE}/get_devstack.sh ${!CONTROLIP}:/tmp
754     # devstack Master is yet to migrate fully to lib/neutron, there are some ugly hacks that is
755     # affecting the stacking.
756     # Workaround For Queens, Make the physical Network as physnet1 in lib/neutron
757     # In Queens the neutron new libs are used and do not have the following options from Pike and earlier:
758     # Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS could be used for the flat_networks
759     # and Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS could be used for the ml2_type_vlan
760     ${SSH} ${!CONTROLIP} "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
761     if [ "${ODL_ML2_BRANCH}" == "stable/queens" ]; then
762        ssh ${!CONTROLIP} "sed -i 's/flat_networks public/flat_networks public,physnet1/' /opt/stack/devstack/lib/neutron"
763        ssh ${!CONTROLIP} "sed -i '186i iniset \$NEUTRON_CORE_PLUGIN_CONF ml2_type_vlan network_vlan_ranges public:1:4094,physnet1:1:4094' /opt/stack/devstack/lib/neutron"
764     fi
765     create_control_node_local_conf ${!CONTROLIP} ${ODLMGRIP} "${ODL_OVS_MGRS}"
766     scp ${WORKSPACE}/local.conf_control_${!CONTROLIP} ${!CONTROLIP}:/opt/stack/devstack/local.conf
767     echo "Install rdo release to avoid incompatible Package versions"
768     install_rdo_release ${!CONTROLIP}
769     setup_live_migration_control ${!CONTROLIP}
770     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
771         setup_live_migration_compute ${!CONTROLIP} ${!CONTROLIP}
772     fi
773     echo "Stack the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${CONTROLIP}"
774     ssh ${!CONTROLIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
775     ssh ${!CONTROLIP} "ps -ef | grep stack.sh"
776     ssh ${!CONTROLIP} "ls -lrt /opt/stack/devstack/nohup.out"
777     os_node_list+=("${!CONTROLIP}")
778 done
779
780 # This is a backup to the CELLSV2_SETUP=singleconductor workaround. Keeping it here as an easy lookup
781 # if needed.
782 # Let the control node get started to avoid a race condition where the computes start and try to access
783 # the nova_cell1 on the control node before it is created. If that happens, the nova-compute service on the
784 # compute exits and does not attempt to restart.
785 # 180s is chosen because in test runs the control node usually finished in 17-20 minutes and the computes finished
786 # in 17 minutes, so take the max difference of 3 minutes and the jobs should still finish around the same time.
787 # one of the following errors is seen in the compute n-cpu.log:
788 # Unhandled error: NotAllowed: Connection.open: (530) NOT_ALLOWED - access to vhost 'nova_cell1' refused for user 'stackrabbit'
789 # AccessRefused: (0, 0): (403) ACCESS_REFUSED - Login was refused using authentication mechanism AMQPLAIN. For details see the broker logfile.
790 # Compare that timestamp to this log in the control stack.log: sudo rabbitmqctl set_permissions -p nova_cell1 stackrabbit
791 # If the n-cpu.log is earlier than the control stack.log timestamp then the failure condition is likely hit.
792 if [ ${NUM_OPENSTACK_COMPUTE_NODES} -gt 0 ]; then
793     WAIT_FOR_RABBITMQ_MINUTES=60
794     echo "Wait a maximum of ${WAIT_FOR_RABBITMQ_MINUTES}m until rabbitmq is ready and nova_cell1 created to allow the controller to create nova_cell1 before the computes need it"
795     set +e
796     retry ${WAIT_FOR_RABBITMQ_MINUTES} 60 "is_rabbitmq_ready ${OPENSTACK_CONTROL_NODE_1_IP}"
797     rc=$?
798     set -e
799     if ((${rc} == 0)); then
800       echo "rabbitmq is ready, starting ${NUM_OPENSTACK_COMPUTE_NODES} compute(s)"
801     else
802       echo "rabbitmq was not ready in ${WAIT_FOR_RABBITMQ_MINUTES}m"
803       exit 1
804     fi
805 fi
806
807 for i in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
808     COMPUTEIP=OPENSTACK_COMPUTE_NODE_${i}_IP
809     CONTROLIP=OPENSTACK_CONTROL_NODE_1_IP
810     echo "Configure the stack of the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${!COMPUTEIP}"
811     scp ${WORKSPACE}/disable_firewall.sh "${!COMPUTEIP}:/tmp"
812     ${SSH} "${!COMPUTEIP}" "sudo bash /tmp/disable_firewall.sh"
813     create_etc_hosts ${!COMPUTEIP} ${!CONTROLIP}
814     scp ${WORKSPACE}/hosts_file ${!COMPUTEIP}:/tmp/hosts
815     scp ${WORKSPACE}/get_devstack.sh  ${!COMPUTEIP}:/tmp
816     ${SSH} ${!COMPUTEIP} "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
817     create_compute_node_local_conf ${!COMPUTEIP} ${!CONTROLIP} ${ODLMGRIP} "${ODL_OVS_MGRS}"
818     scp ${WORKSPACE}/local.conf_compute_${!COMPUTEIP} ${!COMPUTEIP}:/opt/stack/devstack/local.conf
819     echo "Install rdo release to avoid incompatible Package versions"
820     install_rdo_release ${!COMPUTEIP}
821     setup_live_migration_compute ${!COMPUTEIP} ${!CONTROLIP}
822     echo "Stack the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${!COMPUTEIP}"
823     ssh ${!COMPUTEIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
824     ssh ${!COMPUTEIP} "ps -ef | grep stack.sh"
825     os_node_list+=("${!COMPUTEIP}")
826 done
827
828 echo "nodelist: ${os_node_list[*]}"
829
830 # This script runs on the openstack nodes. It greps for a string that devstack writes when stacking is complete.
831 # The script then writes a status depending on the grep output that is later scraped by the robot vm to control
832 # the status polling.
833 cat > ${WORKSPACE}/check_stacking.sh << EOF
834 > /tmp/stack_progress
835 ps -ef | grep "stack.sh" | grep -v grep
836 ret=\$?
837 if [ \${ret} -eq 1 ]; then
838     grep "This is your host IP address:" /opt/stack/devstack/nohup.out
839     if [ \$? -eq 0 ]; then
840         echo "Stacking Complete" > /tmp/stack_progress
841     else
842         echo "Stacking Failed" > /tmp/stack_progress
843     fi
844 elif [ \${ret} -eq 0 ]; then
845     echo "Still Stacking" > /tmp/stack_progress
846 fi
847 EOF
848
849 # devstack debugging
850 # get_hostnames
851
852 # Check if the stacking is finished. Poll all nodes every 60s for one hour.
853 iteration=0
854 in_progress=1
855 while [ ${in_progress} -eq 1 ]; do
856     iteration=$(($iteration + 1))
857     for index in "${!os_node_list[@]}"; do
858         echo "node $index ${os_node_list[index]}: checking stacking status attempt ${iteration} of 60"
859         scp ${WORKSPACE}/check_stacking.sh  ${os_node_list[index]}:/tmp
860         ${SSH} ${os_node_list[index]} "bash /tmp/check_stacking.sh"
861         scp ${os_node_list[index]}:/tmp/stack_progress .
862         cat stack_progress
863         stacking_status=`cat stack_progress`
864         # devstack debugging
865         # get_service "${iteration}" "${index}"
866         if [ "$stacking_status" == "Still Stacking" ]; then
867             continue
868         elif [ "$stacking_status" == "Stacking Failed" ]; then
869             echo "node $index ${os_node_list[index]}: stacking has failed"
870             exit 1
871         elif [ "$stacking_status" == "Stacking Complete" ]; then
872             echo "node $index ${os_node_list[index]}: stacking complete"
873             unset 'os_node_list[index]'
874             if  [ ${#os_node_list[@]} -eq 0 ]; then
875                 in_progress=0
876             fi
877         fi
878     done
879     echo "sleep for a minute before the next check"
880     sleep 60
881     if [ ${iteration} -eq 60 ]; then
882         echo "stacking has failed - took longer than 60m"
883         exit 1
884     fi
885 done
886
887 # Further configuration now that stacking is complete.
888 echo "Configure the Control Node"
889 CONTROLIP=OPENSTACK_CONTROL_NODE_1_IP
890 # Gather Compute IPs for the site
891 for i in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
892     IP_VAR=OPENSTACK_COMPUTE_NODE_${i}_IP
893     COMPUTE_IPS[$((i-1))]=${!IP_VAR}
894 done
895
896 echo "sleep for 60s and print hypervisor-list"
897 sleep 60
898 ${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; nova hypervisor-list"
899 # in the case that we are doing openstack (control + compute) all in one node, then the number of hypervisors
900 # will be the same as the number of openstack systems. However, if we are doing multinode openstack then the
901 # assumption is we have a single control node and the rest are compute nodes, so the number of expected hypervisors
902 # is one less than the total number of openstack systems
903 if [ ${NUM_OPENSTACK_SYSTEM} -eq 1 ]; then
904     expected_num_hypervisors=1
905 else
906     expected_num_hypervisors=${NUM_OPENSTACK_COMPUTE_NODES}
907     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
908         expected_num_hypervisors=$((expected_num_hypervisors + 1))
909     fi
910 fi
911 num_hypervisors=$(${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; openstack hypervisor list -f value | wc -l" | tail -1 | tr -d "\r")
912 if ! [ "${num_hypervisors}" ] || ! [ ${num_hypervisors} -eq ${expected_num_hypervisors} ]; then
913     echo "Error: Only $num_hypervisors hypervisors detected, expected $expected_num_hypervisors"
914     exit 1
915 fi
916
917 # External Network
918 echo "prepare external networks by adding vxlan tunnels between all nodes on a separate bridge..."
919 # FIXME Should there be a unique gateway IP and devstack index for each site?
920 devstack_index=1
921 for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
922     # FIXME - Workaround, ODL (new netvirt) currently adds PUBLIC_BRIDGE as a port in br-int since it doesn't see such a bridge existing when we stack
923     ${SSH} $ip "sudo ovs-vsctl --if-exists del-port br-int $PUBLIC_BRIDGE"
924     ${SSH} $ip "sudo ovs-vsctl --may-exist add-br $PUBLIC_BRIDGE -- set bridge $PUBLIC_BRIDGE other-config:disable-in-band=true other_config:hwaddr=f6:00:00:ff:01:0$((devstack_index++))"
925 done
926
927 # ipsec support
928 if [ "${IPSEC_VXLAN_TUNNELS_ENABLED}" == "yes" ]; then
929     # shellcheck disable=SC2206
930     ALL_NODES=(${!CONTROLIP} ${COMPUTE_IPS[*]})
931     for ((inx_ip1=0; inx_ip1<$((${#ALL_NODES[@]} - 1)); inx_ip1++)); do
932         for ((inx_ip2=$((inx_ip1 + 1)); inx_ip2<${#ALL_NODES[@]}; inx_ip2++)); do
933             KEY1=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
934             KEY2=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
935             ID=0x$(dd if=/dev/urandom count=4 bs=1 2> /dev/null| xxd -p -c 8)
936             ip1=${ALL_NODES[$inx_ip1]}
937             ip2=${ALL_NODES[$inx_ip2]}
938             ${SSH} $ip1 "sudo ip xfrm state add src $ip1 dst $ip2 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
939             ${SSH} $ip1 "sudo ip xfrm state add src $ip2 dst $ip1 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
940             ${SSH} $ip1 "sudo ip xfrm policy add src $ip1 dst $ip2 proto udp dir out tmpl src $ip1 dst $ip2 proto esp reqid $ID mode transport"
941             ${SSH} $ip1 "sudo ip xfrm policy add src $ip2 dst $ip1 proto udp dir in tmpl src $ip2 dst $ip1 proto esp reqid $ID mode transport"
942
943             ${SSH} $ip2 "sudo ip xfrm state add src $ip2 dst $ip1 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
944             ${SSH} $ip2 "sudo ip xfrm state add src $ip1 dst $ip2 proto esp spi $ID reqid $ID mode transport auth sha256 $KEY1 enc aes $KEY2"
945             ${SSH} $ip2 "sudo ip xfrm policy add src $ip2 dst $ip1 proto udp dir out tmpl src $ip2 dst $ip1 proto esp reqid $ID mode transport"
946             ${SSH} $ip2 "sudo ip xfrm policy add src $ip1 dst $ip2 proto udp dir in tmpl src $ip1 dst $ip2 proto esp reqid $ID mode transport"
947         done
948     done
949
950     for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
951         echo "ip xfrm configuration for node $ip:"
952         ${SSH} $ip "sudo ip xfrm policy list"
953         ${SSH} $ip "sudo ip xfrm state list"
954     done
955 fi
956
957 # Control Node - PUBLIC_BRIDGE will act as the external router
958 # Parameter values below are used in integration/test - changing them requires updates in intergration/test as well
959 EXTNET_GATEWAY_IP="10.10.10.250"
960 EXTNET_INTERNET_IP="10.9.9.9"
961 EXTNET_PNF_IP="10.10.10.253"
962 ${SSH} ${!CONTROLIP} "sudo ifconfig ${PUBLIC_BRIDGE} up ${EXTNET_GATEWAY_IP}/24"
963
964 # Control Node - external net PNF simulation
965 ${SSH} ${!CONTROLIP} "
966     sudo ip netns add pnf_ns;
967     sudo ip link add pnf_veth0 type veth peer name pnf_veth1;
968     sudo ip link set pnf_veth1 netns pnf_ns;
969     sudo ip link set pnf_veth0 up;
970     sudo ip netns exec pnf_ns ifconfig pnf_veth1 up ${EXTNET_PNF_IP}/24;
971     sudo ovs-vsctl add-port ${PUBLIC_BRIDGE} pnf_veth0;
972 "
973
974 # Control Node - external net internet address simulation
975 ${SSH} ${!CONTROLIP} "
976     sudo ip tuntap add dev internet_tap mode tap;
977     sudo ifconfig internet_tap up ${EXTNET_INTERNET_IP}/24;
978 "
979
980 # Computes
981 compute_index=1
982 for compute_ip in ${COMPUTE_IPS[*]}; do
983     # Tunnel from controller to compute
984     COMPUTEPORT=compute$(( compute_index++ ))_vxlan
985     ${SSH} ${!CONTROLIP} "
986         sudo ovs-vsctl add-port $PUBLIC_BRIDGE $COMPUTEPORT -- set interface $COMPUTEPORT type=vxlan options:local_ip=${!CONTROLIP} options:remote_ip=$compute_ip options:dst_port=9876 options:key=flow
987     "
988     # Tunnel from compute to controller
989     CONTROLPORT="control_vxlan"
990     ${SSH} $compute_ip "
991         sudo ovs-vsctl add-port $PUBLIC_BRIDGE $CONTROLPORT -- set interface $CONTROLPORT type=vxlan options:local_ip=$compute_ip options:remote_ip=${!CONTROLIP} options:dst_port=9876 options:key=flow
992     "
993 done
994
995 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
996     odlmgrip=OPENSTACK_HAPROXY_1_IP
997     HA_PROXY_IP=${!odlmgrip}
998     HA_PROXY_1_IP=${!odlmgrip}
999     odlmgrip2=OPENSTACK_HAPROXY_2_IP
1000     HA_PROXY_2_IP=${!odlmgrip2}
1001     odlmgrip3=OPENSTACK_HAPROXY_1_IP
1002     HA_PROXY_3_IP=${!odlmgrip3}
1003 else
1004     HA_PROXY_IP=${ODL_SYSTEM_IP}
1005     HA_PROXY_1_IP=${ODL_SYSTEM_1_IP}
1006     HA_PROXY_2_IP=${ODL_SYSTEM_2_IP}
1007     HA_PROXY_3_IP=${ODL_SYSTEM_3_IP}
1008 fi
1009
1010 echo "Locating test plan to use..."
1011 testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}"
1012 if [ ! -f "${testplan_filepath}" ]; then
1013     testplan_filepath="${WORKSPACE}/test/csit/testplans/${TESTPLAN}"
1014 fi
1015
1016 echo "Changing the testplan path..."
1017 cat "${testplan_filepath}" | sed "s:integration:${WORKSPACE}:" > testplan.txt
1018 cat testplan.txt
1019
1020 # Use the testplan if specific SUITES are not defined.
1021 if [ -z "${SUITES}" ]; then
1022     SUITES=`egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' '`
1023 else
1024     newsuites=""
1025     workpath="${WORKSPACE}/test/csit/suites"
1026     for suite in ${SUITES}; do
1027         fullsuite="${workpath}/${suite}"
1028         if [ -z "${newsuites}" ]; then
1029             newsuites+=${fullsuite}
1030         else
1031             newsuites+=" "${fullsuite}
1032         fi
1033     done
1034     SUITES=${newsuites}
1035 fi
1036
1037 #install all client versions required for this job testing
1038 install_openstack_clients_in_robot_vm
1039
1040 # TODO: run openrc on control node and then scrape the vars from it
1041 # Environment Variables Needed to execute Openstack Client for NetVirt Jobs
1042 cat > /tmp/os_netvirt_client_rc << EOF
1043 export OS_USERNAME=admin
1044 export OS_PASSWORD=admin
1045 export OS_PROJECT_NAME=admin
1046 export OS_USER_DOMAIN_NAME=default
1047 export OS_PROJECT_DOMAIN_NAME=default
1048 export OS_AUTH_URL="http://${!CONTROLIP}/identity"
1049 export OS_IDENTITY_API_VERSION=3
1050 export OS_IMAGE_API_VERSION=2
1051 export OS_TENANT_NAME=admin
1052 unset OS_CLOUD
1053 EOF
1054
1055 source /tmp/os_netvirt_client_rc
1056
1057 echo "Get all versions before executing pybot"
1058 echo "openstack --version"
1059 which openstack
1060 openstack --version
1061 echo "nova --version"
1062 which nova
1063 nova --version
1064 echo "neutron --version"
1065 which neutron
1066 neutron --version
1067
1068 stacktime=$(timer $totaltmr)
1069 printf "Stacking elapsed time: %s\n" "${stacktime}"
1070
1071 echo "Starting Robot test suites ${SUITES} ..."
1072 # please add pybot -v arguments on a single line and alphabetized
1073 suite_num=0
1074 for suite in ${SUITES}; do
1075     # prepend an incremental counter to the suite name so that the full robot log combining all the suites as is done
1076     # in the rebot step below will list all the suites in chronological order as rebot seems to alphabetize them
1077     let "suite_num = suite_num + 1"
1078     suite_index="$(printf %02d ${suite_num})"
1079     suite_name="$(basename ${suite} | cut -d. -f1)"
1080     log_name="${suite_index}_${suite_name}"
1081     pybot -N ${log_name} \
1082     -c critical -e exclude -e skip_if_${DISTROSTREAM} \
1083     --log log_${log_name}.html --report report_${log_name}.html --output output_${log_name}.xml \
1084     --removekeywords wuks \
1085     --removekeywords name:SetupUtils.Setup_Utils_For_Setup_And_Teardown \
1086     --removekeywords name:SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing \
1087     --removekeywords name:OpenStackOperations.Add_OVS_Logging_On_All_OpenStack_Nodes \
1088     -v BUNDLEFOLDER:${BUNDLEFOLDER} \
1089     -v BUNDLE_URL:${ACTUAL_BUNDLE_URL} \
1090     -v CMP_INSTANCES_SHARED_PATH:/var/instances \
1091     -v CONTROLLERFEATURES:"${CONTROLLERFEATURES}" \
1092     -v CONTROLLER_USER:${USER} \
1093     -v DEVSTACK_DEPLOY_PATH:/opt/stack/devstack \
1094     -v ENABLE_ITM_DIRECT_TUNNELS:${ENABLE_ITM_DIRECT_TUNNELS} \
1095     -v HA_PROXY_IP:${HA_PROXY_IP} \
1096     -v HA_PROXY_1_IP:${HA_PROXY_1_IP} \
1097     -v HA_PROXY_2_IP:${HA_PROXY_2_IP} \
1098     -v HA_PROXY_3_IP:${HA_PROXY_3_IP} \
1099     -v JDKVERSION:${JDKVERSION} \
1100     -v JENKINS_WORKSPACE:${WORKSPACE} \
1101     -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \
1102     -v NUM_ODL_SYSTEM:${NUM_ODL_SYSTEM} \
1103     -v NUM_OS_SYSTEM:${NUM_OPENSTACK_SYSTEM} \
1104     -v NUM_TOOLS_SYSTEM:${NUM_TOOLS_SYSTEM} \
1105     -v ODL_SNAT_MODE:${ODL_SNAT_MODE} \
1106     -v ODL_STREAM:${DISTROSTREAM} \
1107     -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} \
1108     -v ODL_SYSTEM_1_IP:${ODL_SYSTEM_1_IP} \
1109     -v ODL_SYSTEM_2_IP:${ODL_SYSTEM_2_IP} \
1110     -v ODL_SYSTEM_3_IP:${ODL_SYSTEM_3_IP} \
1111     -v ODL_SYSTEM_4_IP:${ODL_SYSTEM_4_IP} \
1112     -v ODL_SYSTEM_5_IP:${ODL_SYSTEM_5_IP} \
1113     -v ODL_SYSTEM_6_IP:${ODL_SYSTEM_6_IP} \
1114     -v ODL_SYSTEM_7_IP:${ODL_SYSTEM_7_IP} \
1115     -v ODL_SYSTEM_8_IP:${ODL_SYSTEM_8_IP} \
1116     -v ODL_SYSTEM_9_IP:${ODL_SYSTEM_9_IP} \
1117     -v OS_CONTROL_NODE_IP:${OPENSTACK_CONTROL_NODE_1_IP} \
1118     -v OS_CONTROL_NODE_1_IP:${OPENSTACK_CONTROL_NODE_1_IP} \
1119     -v OS_CONTROL_NODE_2_IP:${OPENSTACK_CONTROL_NODE_2_IP} \
1120     -v OS_CONTROL_NODE_3_IP:${OPENSTACK_CONTROL_NODE_3_IP} \
1121     -v OPENSTACK_BRANCH:${OPENSTACK_BRANCH} \
1122     -v OS_COMPUTE_1_IP:${OPENSTACK_COMPUTE_NODE_1_IP} \
1123     -v OS_COMPUTE_2_IP:${OPENSTACK_COMPUTE_NODE_2_IP} \
1124     -v OS_COMPUTE_3_IP:${OPENSTACK_COMPUTE_NODE_3_IP} \
1125     -v OS_COMPUTE_4_IP:${OPENSTACK_COMPUTE_NODE_4_IP} \
1126     -v OS_COMPUTE_5_IP:${OPENSTACK_COMPUTE_NODE_5_IP} \
1127     -v OS_COMPUTE_6_IP:${OPENSTACK_COMPUTE_NODE_6_IP} \
1128     -v OPENSTACK_TOPO:${OPENSTACK_TOPO} \
1129     -v OS_USER:${USER} \
1130     -v PUBLIC_PHYSICAL_NETWORK:${PUBLIC_PHYSICAL_NETWORK} \
1131     -v SECURITY_GROUP_MODE:${SECURITY_GROUP_MODE} \
1132     -v TOOLS_SYSTEM_IP:${TOOLS_SYSTEM_1_IP} \
1133     -v TOOLS_SYSTEM_1_IP:${TOOLS_SYSTEM_1_IP} \
1134     -v TOOLS_SYSTEM_2_IP:${TOOLS_SYSTEM_2_IP} \
1135     -v USER_HOME:${HOME} \
1136     -v WORKSPACE:/tmp \
1137     ${TESTOPTIONS} ${suite} || true
1138 done
1139 #rebot exit codes seem to be different
1140 rebot --output ${WORKSPACE}/output.xml --log log_full.html --report report.html -N openstack output_*.xml || true
1141
1142 echo "Examining the files in data/log and checking file size"
1143 ssh ${ODL_SYSTEM_IP} "ls -altr /tmp/${BUNDLEFOLDER}/data/log/"
1144 ssh ${ODL_SYSTEM_IP} "du -hs /tmp/${BUNDLEFOLDER}/data/log/*"
1145
1146 echo "Tests Executed"
1147 printf "Total elapsed time: %s, stacking time: %s\n" "$(timer $totaltmr)" "${stacktime}"
1148 true  # perhaps Jenkins is testing last exit code
1149 # vim: ts=4 sw=4 sts=4 et ft=sh :