Merge "Always keep copy of RPM in build out dir"
[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 PYTHON="${ROBOT_VENV}/bin/python"
8 SSH="ssh -t -t"
9 ADMIN_PASSWORD=admin
10
11 # TODO: remove this work to run changes.py if/when it's moved higher up to be visible at the Robot level
12 echo "showing recent changes that made it in to the distribution used by this job"
13 $PYTHON -m pip install --upgrade urllib3
14 python ${WORKSPACE}/test/tools/distchanges/changes.py -d /tmp/distribution_folder \
15                   -u ${ACTUAL_BUNDLE_URL} -b ${DISTROBRANCH} \
16                   -r ssh://jenkins-${SILO}@git.opendaylight.org:29418 || true
17 cat << EOF
18 #################################################
19 ##         Deploy Openstack 3-node             ##
20 #################################################
21 EOF
22
23 # Catch command errors and collect logs.
24 # This ensures logs are collected when script commands fail rather than simply exiting.
25 function trap_handler() {
26     local prog="$0"
27     local lastline="$1"
28     local lasterr="$2"
29     echo "${prog}: line ${lastline}: exit status of last command: ${lasterr}"
30     echo "command: ${BASH_COMMAND}"
31     collect_logs
32     exit 1
33 } # trap_handler()
34
35 trap 'trap_handler ${LINENO} ${$?}' ERR
36
37 function print_job_parameters() {
38     cat << EOF
39
40 Job parameters:
41 DISTROBRANCH: ${DISTROBRANCH}
42 DISTROSTREAM: ${DISTROSTREAM}
43 BUNDLE_URL: ${BUNDLE_URL}
44 CONTROLLERFEATURES: ${CONTROLLERFEATURES}
45 CONTROLLERDEBUGMAP: ${CONTROLLERDEBUGMAP}
46 TESTPLAN: ${TESTPLAN}
47 SUITES: ${SUITES}
48 PATCHREFSPEC: ${PATCHREFSPEC}
49 OPENSTACK_BRANCH: ${OPENSTACK_BRANCH}
50 DEVSTACK_HASH: ${DEVSTACK_HASH}
51 ODL_ML2_DRIVER_REPO: ${ODL_ML2_DRIVER_REPO}
52 ODL_ML2_BRANCH: ${ODL_ML2_BRANCH}
53 ODL_ML2_DRIVER_VERSION: ${ODL_ML2_DRIVER_VERSION}
54 ODL_ML2_PORT_BINDING: ${ODL_ML2_PORT_BINDING}
55 DEVSTACK_KUBERNETES_PLUGIN_REPO: ${DEVSTACK_KUBERNETES_PLUGIN_REPO}
56 DEVSTACK_LBAAS_PLUGIN_REPO: ${DEVSTACK_LBAAS_PLUGIN_REPO}
57 DEVSTACK_NETWORKING_SFC_PLUGIN_REPO: ${DEVSTACK_NETWORKING_SFC_PLUGIN_REPO}
58 ODL_ENABLE_L3_FWD: ${ODL_ENABLE_L3_FWD}
59 IPSEC_VXLAN_TUNNELS_ENABLED: ${IPSEC_VXLAN_TUNNELS_ENABLED}
60 PUBLIC_BRIDGE: ${PUBLIC_BRIDGE}
61 ENABLE_HAPROXY_FOR_NEUTRON: ${ENABLE_HAPROXY_FOR_NEUTRON}
62 ENABLE_OS_SERVICES: ${ENABLE_OS_SERVICES}
63 ENABLE_OS_COMPUTE_SERVICES: ${ENABLE_OS_COMPUTE_SERVICES}
64 ENABLE_OS_PLUGINS: ${ENABLE_OS_PLUGINS}
65 DISABLE_OS_SERVICES: ${DISABLE_OS_SERVICES}
66 TENANT_NETWORK_TYPE: ${TENANT_NETWORK_TYPE}
67 SECURITY_GROUP_MODE: ${SECURITY_GROUP_MODE}
68 PUBLIC_PHYSICAL_NETWORK: ${PUBLIC_PHYSICAL_NETWORK}
69 ENABLE_NETWORKING_L2GW: ${ENABLE_NETWORKING_L2GW}
70 CREATE_INITIAL_NETWORKS: ${CREATE_INITIAL_NETWORKS}
71 LBAAS_SERVICE_PROVIDER: ${LBAAS_SERVICE_PROVIDER}
72 NUM_OPENSTACK_SITES: ${NUM_OPENSTACK_SITES}
73 ODL_SFC_DRIVER: ${ODL_SFC_DRIVER}
74 ODL_SNAT_MODE: ${ODL_SNAT_MODE}
75
76 EOF
77 }
78
79 print_job_parameters
80
81 function create_etc_hosts() {
82     NODE_IP=$1
83     CTRL_IP=$2
84     : > ${WORKSPACE}/hosts_file
85     for iter in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`
86     do
87         COMPUTE_IP=OPENSTACK_COMPUTE_NODE_${iter}_IP
88         if [ "${!COMPUTE_IP}" == "${NODE_IP}" ]; then
89            CONTROL_HNAME=$(${SSH}  ${CTRL_IP}  "hostname")
90            echo "${CTRL_IP}   ${CONTROL_HNAME}" >> ${WORKSPACE}/hosts_file
91         else
92            COMPUTE_HNAME=$(${SSH}  ${!COMPUTE_IP}  "hostname")
93            echo "${!COMPUTE_IP}   ${COMPUTE_HNAME}" >> ${WORKSPACE}/hosts_file
94         fi
95     done
96
97     echo "Created the hosts file for ${NODE_IP}:"
98     cat ${WORKSPACE}/hosts_file
99 } # create_etc_hosts()
100
101 # convert commas in csv strings to spaces (ssv)
102 function csv2ssv() {
103     local csv=$1
104     if [ -n "${csv}" ]; then
105         ssv=$(echo ${csv} | sed 's/,/ /g' | sed 's/\ \ */\ /g')
106     fi
107
108     echo "${ssv}"
109 } # csv2ssv
110
111 # Add enable_services and disable_services to the local.conf
112 function add_os_services() {
113     local core_services=$1
114     local enable_services=$2
115     local disable_services=$3
116     local local_conf_file_name=$4
117
118     cat >> ${local_conf_file_name} << EOF
119 enable_service $(csv2ssv "${core_services}")
120 EOF
121     if [ -n "${enable_services}" ]; then
122         cat >> ${local_conf_file_name} << EOF
123 enable_service $(csv2ssv "${enable_services}")
124 EOF
125     fi
126     if [ -n "${disable_services}" ]; then
127         cat >> ${local_conf_file_name} << EOF
128 disable_service $(csv2ssv "${disable_services}")
129 EOF
130     fi
131 }
132
133 function create_control_node_local_conf() {
134     HOSTIP=$1
135     MGRIP=$2
136     ODL_OVS_MANAGERS="$3"
137
138     local_conf_file_name=${WORKSPACE}/local.conf_control_${HOSTIP}
139     cat > ${local_conf_file_name} << EOF
140 [[local|localrc]]
141 LOGFILE=stack.sh.log
142 USE_SCREEN=True
143 SCREEN_LOGDIR=/opt/stack/data/log
144 LOG_COLOR=False
145 RECLONE=${RECLONE}
146
147 disable_all_services
148 EOF
149
150     add_os_services "${CORE_OS_CONTROL_SERVICES}" "${ENABLE_OS_SERVICES}" "${DISABLE_OS_SERVICES}" "${local_conf_file_name}"
151
152     cat >> ${local_conf_file_name} << EOF
153
154 HOST_IP=${HOSTIP}
155 SERVICE_HOST=\$HOST_IP
156 Q_ML2_TENANT_NETWORK_TYPE=${TENANT_NETWORK_TYPE}
157 NEUTRON_CREATE_INITIAL_NETWORKS=${CREATE_INITIAL_NETWORKS}
158
159 ODL_MODE=manual
160 ODL_MGR_IP=${MGRIP}
161 ODL_PORT=8080
162 ODL_PORT_BINDING_CONTROLLER=${ODL_ML2_PORT_BINDING}
163 ODL_OVS_MANAGERS=${ODL_OVS_MANAGERS}
164
165 MYSQL_HOST=\$SERVICE_HOST
166 RABBIT_HOST=\$SERVICE_HOST
167 GLANCE_HOSTPORT=\$SERVICE_HOST:9292
168 KEYSTONE_AUTH_HOST=\$SERVICE_HOST
169 KEYSTONE_SERVICE_HOST=\$SERVICE_HOST
170
171 ADMIN_PASSWORD=${ADMIN_PASSWORD}
172 DATABASE_PASSWORD=${ADMIN_PASSWORD}
173 RABBIT_PASSWORD=${ADMIN_PASSWORD}
174 SERVICE_TOKEN=${ADMIN_PASSWORD}
175 SERVICE_PASSWORD=${ADMIN_PASSWORD}
176
177 NEUTRON_LBAAS_SERVICE_PROVIDERV2=${LBAAS_SERVICE_PROVIDER} # Only relevant if neutron-lbaas plugin is enabled
178 NEUTRON_SFC_DRIVERS=${ODL_SFC_DRIVER} # Only relevant if networking-sfc plugin is enabled
179 NEUTRON_FLOWCLASSIFIER_DRIVERS=${ODL_SFC_DRIVER} # Only relevant if networking-sfc plugin is enabled
180 ETCD_PORT=2379
181 EOF
182
183     if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then
184         echo "ODL_V2DRIVER=True" >> ${local_conf_file_name}
185     fi
186
187     IFS=,
188     for plugin_name in ${ENABLE_OS_PLUGINS}; do
189         if [ "$plugin_name" == "networking-odl" ]; then
190             ENABLE_PLUGIN_ARGS="${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH}"
191         elif [ "$plugin_name" == "kuryr-kubernetes" ]; then
192             ENABLE_PLUGIN_ARGS="${DEVSTACK_KUBERNETES_PLUGIN_REPO} master" # note: kuryr-kubernetes only exists in master at the moment
193         elif [ "$plugin_name" == "neutron-lbaas" ]; then
194             ENABLE_PLUGIN_ARGS="${DEVSTACK_LBAAS_PLUGIN_REPO} ${OPENSTACK_BRANCH}"
195             IS_LBAAS_PLUGIN_ENABLED="yes"
196         elif [ "$plugin_name" == "networking-sfc" ]; then
197             ENABLE_PLUGIN_ARGS="${DEVSTACK_NETWORKING_SFC_PLUGIN_REPO} ${OPENSTACK_BRANCH}"
198         else
199             echo "Error: Invalid plugin $plugin_name, unsupported"
200             continue
201         fi
202         cat >> ${local_conf_file_name} << EOF
203
204 enable_plugin ${plugin_name} ${ENABLE_PLUGIN_ARGS}
205 EOF
206     done
207     unset IFS
208
209     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
210         cat >> ${local_conf_file_name} << EOF
211
212 enable_plugin networking-l2gw ${NETWORKING_L2GW_DRIVER} ${ODL_ML2_BRANCH}
213 NETWORKING_L2GW_SERVICE_DRIVER=L2GW:OpenDaylight:networking_odl.l2gateway.driver.OpenDaylightL2gwDriver:default
214 EOF
215     fi
216
217     if [ "${ODL_ENABLE_L3_FWD}" == "yes" ]; then
218         cat >> ${local_conf_file_name} << EOF
219
220 PUBLIC_BRIDGE=${PUBLIC_BRIDGE}
221 PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK}
222 ML2_VLAN_RANGES=${PUBLIC_PHYSICAL_NETWORK}
223 ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS}
224 EOF
225
226         if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then
227            SERVICE_PLUGINS="odl-router_v2"
228         else
229            SERVICE_PLUGINS="odl-router"
230         fi
231         if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
232             SERVICE_PLUGINS+=", networking_l2gw.services.l2gateway.plugin.L2GatewayPlugin"
233         fi
234         if [ "${IS_LBAAS_PLUGIN_ENABLED}" == "yes" ]; then
235             SERVICE_PLUGINS+=", lbaasv2"
236         fi
237     fi #check for ODL_ENABLE_L3_FWD
238
239     cat >> ${local_conf_file_name} << EOF
240
241 [[post-config|\$NEUTRON_CONF]]
242 [DEFAULT]
243 service_plugins = ${SERVICE_PLUGINS}
244
245 [[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
246 [agent]
247 minimize_polling=True
248
249 [ml2]
250 # Needed for VLAN provider tests - because our provider networks are always encapsulated in VXLAN (br-physnet1)
251 # MTU(1440) + VXLAN(50) + VLAN(4) = 1494 < MTU eth0/br-physnet1(1500)
252 physical_network_mtus = ${PUBLIC_PHYSICAL_NETWORK}:1440
253 path_mtu = 1490
254
255 # workaround for port-status not working due to https://bugs.opendaylight.org/show_bug.cgi?id=9092
256 [ml2_odl]
257 odl_features=nothing
258
259 [[post-config|/etc/neutron/dhcp_agent.ini]]
260 [DEFAULT]
261 force_metadata = True
262 enable_isolated_metadata = True
263
264 [[post-config|/etc/nova/nova.conf]]
265 [DEFAULT]
266 force_config_drive = False
267
268 [scheduler]
269 discover_hosts_in_cells_interval = 30
270 EOF
271
272     echo "Control local.conf created:"
273     cat ${local_conf_file_name}
274 } # create_control_node_local_conf()
275
276 function create_compute_node_local_conf() {
277     HOSTIP=$1
278     SERVICEHOST=$2
279     MGRIP=$3
280     ODL_OVS_MANAGERS="$4"
281
282     local_conf_file_name=${WORKSPACE}/local.conf_compute_${HOSTIP}
283     cat > ${local_conf_file_name} << EOF
284 [[local|localrc]]
285 LOGFILE=stack.sh.log
286 LOG_COLOR=False
287 USE_SCREEN=True
288 SCREEN_LOGDIR=/opt/stack/data/log
289 RECLONE=${RECLONE}
290
291 disable_all_services
292 EOF
293
294     add_os_services "${CORE_OS_COMPUTE_SERVICES}" "${ENABLE_OS_COMPUTE_SERVICES}" "${DISABLE_OS_SERVICES}" "${local_conf_file_name}"
295
296     cat >> ${local_conf_file_name} << EOF
297
298 HOST_IP=${HOSTIP}
299 SERVICE_HOST=${SERVICEHOST}
300 Q_ML2_TENANT_NETWORK_TYPE=${TENANT_NETWORK_TYPE}
301
302 ODL_MODE=manual
303 ODL_MGR_IP=${MGRIP}
304 ODL_PORT=8080
305 ODL_PORT_BINDING_CONTROLLER=${ODL_ML2_PORT_BINDING}
306 ODL_OVS_MANAGERS=${ODL_OVS_MANAGERS}
307
308 Q_HOST=\$SERVICE_HOST
309 MYSQL_HOST=\$SERVICE_HOST
310 RABBIT_HOST=\$SERVICE_HOST
311 GLANCE_HOSTPORT=\$SERVICE_HOST:9292
312 KEYSTONE_AUTH_HOST=\$SERVICE_HOST
313 KEYSTONE_SERVICE_HOST=\$SERVICE_HOST
314
315 ADMIN_PASSWORD=${ADMIN_PASSWORD}
316 DATABASE_PASSWORD=${ADMIN_PASSWORD}
317 RABBIT_PASSWORD=${ADMIN_PASSWORD}
318 SERVICE_TOKEN=${ADMIN_PASSWORD}
319 SERVICE_PASSWORD=${ADMIN_PASSWORD}
320 EOF
321
322     if [[ "${ENABLE_OS_PLUGINS}" =~ networking-odl ]]; then
323         cat >> ${local_conf_file_name} << EOF
324
325 enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH}
326 EOF
327     fi
328
329     if [ "${ODL_ENABLE_L3_FWD}" == "yes" ]; then
330         cat >> ${local_conf_file_name} << EOF
331
332 PUBLIC_BRIDGE=${PUBLIC_BRIDGE}
333 PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK}
334 ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS}
335 Q_L3_ENABLED=True
336 ODL_L3=${ODL_L3}
337 EOF
338     fi
339
340     cat >> ${local_conf_file_name} << EOF
341
342 [[post-config|/etc/nova/nova.conf]]
343 [api]
344 auth_strategy = keystone
345 [DEFAULT]
346 use_neutron = True
347 EOF
348
349     echo "Compute local.conf created:"
350     cat ${local_conf_file_name}
351 } # create_compute_node_local_conf()
352
353 function configure_haproxy_for_neutron_requests() {
354     MGRIP=$1
355     ODL_IPS=(${2//,/ })
356
357     cat > ${WORKSPACE}/install_ha_proxy.sh<< EOF
358 sudo systemctl stop firewalld
359 sudo yum -y install policycoreutils-python haproxy
360 EOF
361
362 cat > ${WORKSPACE}/haproxy.cfg << EOF
363 global
364   daemon
365   group  haproxy
366   log  /dev/log local0
367   maxconn  20480
368   pidfile  /tmp/haproxy.pid
369   user  haproxy
370
371 defaults
372   log  global
373   maxconn  4096
374   mode  tcp
375   retries  3
376   timeout  http-request 10s
377   timeout  queue 1m
378   timeout  connect 10s
379   timeout  client 1m
380   timeout  server 1m
381   timeout  check 10s
382
383 listen opendaylight
384   bind ${MGRIP}:8080
385   balance source
386 EOF
387
388     odlindex=1
389     for odlip in ${ODL_IPS[*]}; do
390         cat >> ${WORKSPACE}/haproxy.cfg << EOF
391   server controller-${odlindex} ${odlip}:8080 check fall 5 inter 2000 rise 2
392 EOF
393         odlindex=$((odlindex+1))
394     done
395
396     cat >> ${WORKSPACE}/haproxy.cfg << EOF
397 listen opendaylight_rest
398   bind ${MGRIP}:8181
399   balance source
400 EOF
401
402     odlindex=1
403     for odlip in ${ODL_IPS[*]}; do
404         cat >> ${WORKSPACE}/haproxy.cfg << EOF
405   server controller-rest-${odlindex} ${odlip}:8181 check fall 5 inter 2000 rise 2
406 EOF
407         odlindex=$((odlindex+1))
408     done
409
410     echo "Dump haproxy.cfg"
411     cat ${WORKSPACE}/haproxy.cfg
412
413     cat > ${WORKSPACE}/deploy_ha_proxy.sh<< EOF
414 sudo chown haproxy:haproxy /tmp/haproxy.cfg
415 sudo sed -i 's/\\/etc\\/haproxy\\/haproxy.cfg/\\/tmp\\/haproxy.cfg/g' /usr/lib/systemd/system/haproxy.service
416 sudo /usr/sbin/semanage permissive -a haproxy_t
417 sudo systemctl restart haproxy
418 sleep 3
419 sudo netstat -tunpl
420 sudo systemctl status haproxy
421 true
422 EOF
423
424     scp ${WORKSPACE}/install_ha_proxy.sh ${MGRIP}:/tmp
425     ${SSH} ${MGRIP} "sudo bash /tmp/install_ha_proxy.sh"
426     scp ${WORKSPACE}/haproxy.cfg ${MGRIP}:/tmp
427     scp ${WORKSPACE}/deploy_ha_proxy.sh ${MGRIP}:/tmp
428     ${SSH} ${MGRIP} "sudo bash /tmp/deploy_ha_proxy.sh"
429 } # configure_haproxy_for_neutron_requests()
430
431 # Collect the list of files on the hosts
432 function list_files () {
433     local ip=$1
434     local folder=$2
435     ${SSH} ${ip} "sudo find /etc > /tmp/find.etc.txt"
436     ${SSH} ${ip} "sudo find /opt/stack > /tmp/find.opt.stack.txt"
437     ${SSH} ${ip} "sudo find /var > /tmp/find2.txt"
438     rsync --rsync-path="sudo rsync" -arv --list-only ssh ${ip}:/var/ > ${folder}/rsync.var.txt
439     scp ${ip}:/tmp/find.etc.txt ${folder}
440     scp ${ip}:/tmp/find.opt.stack.txt ${folder}
441     scp ${ip}:/tmp/find2.txt ${folder}
442 }
443
444 function collect_logs () {
445     set +e  # We do not want to create red dot just because something went wrong while fetching logs.
446
447     for i in `seq 1 ${NUM_ODL_SYSTEM}`; do
448         CONTROLLERIP=ODL_SYSTEM_${i}_IP
449         echo "Lets's take the karaf thread dump again..."
450         KARAF_PID=$(ssh ${!CONTROLLERIP} "ps aux | grep ${KARAF_ARTIFACT} | grep -v grep | tr -s ' ' | cut -f2 -d' '")
451         ssh ${!CONTROLLERIP} "jstack $KARAF_PID"> ${WORKSPACE}/karaf_${i}_threads_after.log || true
452         echo "killing karaf process..."
453         ${SSH} "${!CONTROLLERIP}" bash -c 'ps axf | grep karaf | grep -v grep | awk '"'"'{print "kill -9 " $1}'"'"' | sh'
454     done
455
456     cat > extra_debug.sh << EOF
457 echo -e "/usr/sbin/lsmod | /usr/bin/grep openvswitch\n"
458 /usr/sbin/lsmod | /usr/bin/grep openvswitch
459 echo -e "\ngrep ct_ /var/log/openvswitch/ovs-vswitchd.log\n"
460 grep ct_ /var/log/openvswitch/ovs-vswitchd.log
461 echo -e "\novsdb-tool -mm show-log\n"
462 ovsdb-tool -mm show-log
463 echo -e "\nsudo netstat -punta\n"
464 sudo netstat -punta
465 echo -e "\nsudo getenforce\n"
466 sudo getenforce
467 echo -e "\njournalctl > /tmp/journalctl.log\n"
468 sudo journalctl > /tmp/journalctl.log
469 echo -e "\nsudo systemctl status httpd\n"
470 sudo systemctl status httpd
471 echo -e "\nenv\n"
472 env
473 source /opt/stack/devstack/openrc admin admin
474 echo -e "\nenv after openrc\n"
475 env
476 EOF
477
478     # Since this log collection work is happening before the archive build macro which also
479     # creates the ${WORKSPACE}/archives dir, we have to do it here first.  The mkdir in the
480     # archives build step will essentially be a noop.
481     mkdir -p ${WORKSPACE}/archives
482
483     sleep 5
484     # FIXME: Do not create .tar and gzip before copying.
485     for i in `seq 1 ${NUM_ODL_SYSTEM}`; do
486         CONTROLLERIP=ODL_SYSTEM_${i}_IP
487         NODE_FOLDER="odl_${i}"
488         mkdir -p ${NODE_FOLDER}
489         ${SSH} ${!CONTROLLERIP} "journalctl > /tmp/journalctl.log"
490         scp ${!CONTROLLERIP}:/tmp/journalctl.log ${NODE_FOLDER}
491         ${SSH} ${!CONTROLLERIP} "dmesg -T > /tmp/dmesg.log"
492         scp ${!CONTROLLERIP}:/tmp/dmesg.log ${NODE_FOLDER}
493         ${SSH} ${!CONTROLLERIP} "cp -r /tmp/${BUNDLEFOLDER}/data/log /tmp/odl_log"
494         ${SSH} ${!CONTROLLERIP} "tar -cf /tmp/odl${i}_karaf.log.tar /tmp/odl_log/*"
495         scp ${!CONTROLLERIP}:/tmp/odl${i}_karaf.log.tar ${NODE_FOLDER}
496         ${SSH} ${!CONTROLLERIP} "tar -cf /tmp/odl${i}_zrpcd.log.tar /tmp/zrpcd.init.log"
497         scp ${!CONTROLLERIP}:/tmp/odl${i}_zrpcd.log.tar ${NODE_FOLDER}
498         tar -xvf ${NODE_FOLDER}/odl${i}_karaf.log.tar -C ${NODE_FOLDER} --strip-components 2 --transform s/karaf/odl${i}_karaf/g
499         grep "ROBOT MESSAGE\| ERROR " ${NODE_FOLDER}/odl${i}_karaf.log > ${NODE_FOLDER}/odl${i}_err.log
500         grep "ROBOT MESSAGE\| ERROR \| WARN \|Exception" \
501             ${NODE_FOLDER}/odl${i}_karaf.log > ${NODE_FOLDER}/odl${i}_err_warn_exception.log
502         # Print ROBOT lines and print Exception lines. For exception lines also print the previous line for context
503         sed -n -e '/ROBOT MESSAGE/P' -e '$!N;/Exception/P;D' ${NODE_FOLDER}/odl${i}_karaf.log > ${NODE_FOLDER}/odl${i}_exception.log
504         rm ${NODE_FOLDER}/odl${i}_karaf.log.tar
505         mv karaf_${i}_threads* ${NODE_FOLDER}
506         mv ${NODE_FOLDER} ${WORKSPACE}/archives/
507     done
508
509     print_job_parameters > ${WORKSPACE}/archives/params.txt
510
511     # Control Node
512     for i in `seq 1 ${NUM_OPENSTACK_CONTROL_NODES}`; do
513         OSIP=OPENSTACK_CONTROL_NODE_${i}_IP
514         NODE_FOLDER="control_${i}"
515         mkdir -p ${NODE_FOLDER}
516         scp ${!OSIP}:/etc/dnsmasq.conf ${NODE_FOLDER}
517         scp ${!OSIP}:/etc/keystone/keystone.conf ${NODE_FOLDER}
518         scp ${!OSIP}:/etc/keystone/keystone-uwsgi-admin.ini ${NODE_FOLDER}
519         scp ${!OSIP}:/etc/keystone/keystone-uwsgi-public.ini ${NODE_FOLDER}
520         scp ${!OSIP}:/etc/kuryr/kuryr.conf ${NODE_FOLDER}
521         scp ${!OSIP}:/etc/neutron/dhcp_agent.ini ${NODE_FOLDER}
522         scp ${!OSIP}:/etc/neutron/metadata_agent.ini ${NODE_FOLDER}
523         scp ${!OSIP}:/etc/neutron/neutron.conf ${NODE_FOLDER}
524         scp ${!OSIP}:/etc/neutron/neutron_lbaas.conf ${NODE_FOLDER}
525         scp ${!OSIP}:/etc/neutron/plugins/ml2/ml2_conf.ini ${NODE_FOLDER}
526         scp ${!OSIP}:/etc/neutron/services/loadbalancer/haproxy/lbaas_agent.ini ${NODE_FOLDER}
527         scp ${!OSIP}:/etc/nova/nova.conf ${NODE_FOLDER}
528         scp ${!OSIP}:/etc/nova/nova-api-uwsgi.ini ${NODE_FOLDER}
529         scp ${!OSIP}:/etc/nova/nova_cell1.conf ${NODE_FOLDER}
530         scp ${!OSIP}:/etc/nova/nova-cpu.conf ${NODE_FOLDER}
531         scp ${!OSIP}:/etc/nova/placement-uwsgi.ini ${NODE_FOLDER}
532         scp ${!OSIP}:/etc/openstack/clouds.yaml ${NODE_FOLDER}
533         scp ${!OSIP}:/opt/stack/devstack/.stackenv ${NODE_FOLDER}
534         scp ${!OSIP}:/opt/stack/devstack/nohup.out ${NODE_FOLDER}/stack.log
535         scp ${!OSIP}:/opt/stack/devstack/openrc ${NODE_FOLDER}
536         scp ${!OSIP}:/opt/stack/requirements/upper-constraints.txt ${NODE_FOLDER}
537         scp ${!OSIP}:/opt/stack/tempest/etc/tempest.conf ${NODE_FOLDER}
538         scp ${!OSIP}:/tmp/get_devstack.sh.txt ${NODE_FOLDER}
539         scp ${!OSIP}:/var/log/httpd/keystone_access.log ${NODE_FOLDER}
540         scp ${!OSIP}:/var/log/httpd/keystone.log ${NODE_FOLDER}
541         scp ${!OSIP}:/var/log/openvswitch/ovs-vswitchd.log ${NODE_FOLDER}
542         scp ${!OSIP}:/var/log/openvswitch/ovsdb-server.log ${NODE_FOLDER}
543         list_files "${!OSIP}" "${NODE_FOLDER}"
544         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/etc/hosts ${NODE_FOLDER}
545         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/usr/lib/systemd/system/haproxy.service ${NODE_FOLDER}
546         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/audit/audit.log ${NODE_FOLDER}
547         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/dmesg.log ${NODE_FOLDER}
548         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/messages ${NODE_FOLDER}
549         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/rabbitmq ${NODE_FOLDER}
550         rsync -avhe ssh ${!OSIP}:/opt/stack/logs/* ${NODE_FOLDER} # rsync to prevent copying of symbolic links
551         scp extra_debug.sh ${!OSIP}:/tmp
552         ${SSH} ${!OSIP} "bash /tmp/extra_debug.sh > /tmp/extra_debug.log"
553         scp ${!OSIP}:/tmp/extra_debug.log ${NODE_FOLDER}
554         scp ${!OSIP}:/tmp/journalctl.log ${NODE_FOLDER}
555         scp ${!OSIP}:/tmp/*.xz ${NODE_FOLDER}
556         mv local.conf_control_${!OSIP} ${NODE_FOLDER}/local.conf
557         mv /tmp/qdhcp ${NODE_FOLDER}
558         mv ${NODE_FOLDER} ${WORKSPACE}/archives/
559     done
560
561     # Compute Nodes
562     for i in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
563         OSIP=OPENSTACK_COMPUTE_NODE_${i}_IP
564         NODE_FOLDER="compute_${i}"
565         mkdir -p ${NODE_FOLDER}
566         scp ${!OSIP}:/etc/nova/nova.conf ${NODE_FOLDER}
567         scp ${!OSIP}:/etc/nova/nova-cpu.conf ${NODE_FOLDER}
568         scp ${!OSIP}:/etc/openstack/clouds.yaml ${NODE_FOLDER}
569         scp ${!OSIP}:/opt/stack/devstack/.stackenv ${NODE_FOLDER}
570         scp ${!OSIP}:/opt/stack/devstack/nohup.out ${NODE_FOLDER}/stack.log
571         scp ${!OSIP}:/opt/stack/devstack/openrc ${NODE_FOLDER}
572         scp ${!OSIP}:/opt/stack/requirements/upper-constraints.txt ${NODE_FOLDER}
573         scp ${!OSIP}:/tmp/get_devstack.sh.txt ${NODE_FOLDER}
574         scp ${!OSIP}:/var/log/openvswitch/ovs-vswitchd.log ${NODE_FOLDER}
575         scp ${!OSIP}:/var/log/openvswitch/ovsdb-server.log ${NODE_FOLDER}
576         list_files "${!OSIP}" "${NODE_FOLDER}"
577         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/etc/hosts ${NODE_FOLDER}
578         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/audit/audit.log ${NODE_FOLDER}
579         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/dmesg.log ${NODE_FOLDER}
580         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/libvirt ${NODE_FOLDER}
581         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/messages ${NODE_FOLDER}
582         rsync --rsync-path="sudo rsync" -avhe ssh ${!OSIP}:/var/log/nova-agent.log ${NODE_FOLDER}
583         rsync -avhe ssh ${!OSIP}:/opt/stack/logs/* ${NODE_FOLDER} # rsync to prevent copying of symbolic links
584         scp extra_debug.sh ${!OSIP}:/tmp
585         ${SSH} ${!OSIP} "bash /tmp/extra_debug.sh > /tmp/extra_debug.log"
586         scp ${!OSIP}:/tmp/extra_debug.log ${NODE_FOLDER}
587         scp ${!OSIP}:/tmp/journalctl.log ${NODE_FOLDER}
588         scp ${!OSIP}:/tmp/*.xz ${NODE_FOLDER}/
589         mv local.conf_compute_${!OSIP} ${NODE_FOLDER}/local.conf
590         mv ${NODE_FOLDER} ${WORKSPACE}/archives/
591     done
592
593     # Tempest
594     DEVSTACK_TEMPEST_DIR="/opt/stack/tempest"
595     TESTREPO=".stestr"
596     TEMPEST_LOGS_DIR=${WORKSPACE}/archives/tempest
597     # Look for tempest test results in the $TESTREPO dir and copy if found
598     if ${SSH} ${OPENSTACK_CONTROL_NODE_1_IP} "sudo sh -c '[ -f ${DEVSTACK_TEMPEST_DIR}/${TESTREPO}/0 ]'"; then
599         ${SSH} ${OPENSTACK_CONTROL_NODE_1_IP} "for I in \$(sudo ls ${DEVSTACK_TEMPEST_DIR}/${TESTREPO}/ | grep -E '^[0-9]+$'); do sudo sh -c \"${DEVSTACK_TEMPEST_DIR}/.tox/tempest/bin/subunit-1to2 < ${DEVSTACK_TEMPEST_DIR}/${TESTREPO}/\${I} >> ${DEVSTACK_TEMPEST_DIR}/subunit_log.txt\"; done"
600         ${SSH} ${OPENSTACK_CONTROL_NODE_1_IP} "sudo sh -c '${DEVSTACK_TEMPEST_DIR}/.tox/tempest/bin/python ${DEVSTACK_TEMPEST_DIR}/.tox/tempest/lib/python2.7/site-packages/os_testr/subunit2html.py ${DEVSTACK_TEMPEST_DIR}/subunit_log.txt ${DEVSTACK_TEMPEST_DIR}/tempest_results.html'"
601         mkdir -p ${TEMPEST_LOGS_DIR}
602         scp ${OPENSTACK_CONTROL_NODE_1_IP}:${DEVSTACK_TEMPEST_DIR}/tempest_results.html ${TEMPEST_LOGS_DIR}
603         scp ${OPENSTACK_CONTROL_NODE_1_IP}:${DEVSTACK_TEMPEST_DIR}/tempest.log ${TEMPEST_LOGS_DIR}
604         mv ${WORKSPACE}/tempest_output* ${TEMPEST_LOGS_DIR}
605     else
606         echo "tempest results not found in ${DEVSTACK_TEMPEST_DIR}/${TESTREPO}/0"
607     fi
608 } # collect_logs()
609
610 # Following three functions are debugging helpers when debugging devstack changes.
611 # Keeping them for now so we can simply call them when needed.
612 ctrlhn=""
613 comp1hn=""
614 comp2hn=""
615 function get_hostnames () {
616     set +e
617     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
618     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
619     local comp2ip=${OPENSTACK_COMPUTE_NODE_2_IP}
620     ctrlhn=$(${SSH} ${ctrlip} "hostname")
621     comp1hn=$(${SSH} ${comp1ip} "hostname")
622     comp2hn=$(${SSH} ${comp2ip} "hostname")
623     echo "hostnames: ${ctrlhn}, ${comp1hn}, ${comp2hn}"
624     set -e
625 }
626
627 function check_firewall() {
628     set +e
629     echo $-
630     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
631     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
632     local comp2ip=${OPENSTACK_COMPUTE_NODE_2_IP}
633
634     echo "check_firewall on control"
635     ${SSH} ${ctrlip} "
636         sudo systemctl status firewalld
637         sudo systemctl -l status iptables
638         sudo iptables --line-numbers -nvL
639     " || true
640     echo "check_firewall on compute 1"
641     ${SSH} ${comp1ip} "
642         sudo systemctl status firewalld
643         sudo systemctl -l status iptables
644         sudo iptables --line-numbers -nvL
645     " || true
646     echo "check_firewall on compute 2"
647     ${SSH} ${comp2ip} "
648         sudo systemctl status firewalld
649         sudo systemctl -l status iptables
650         sudo iptables --line-numbers -nvL
651     " || true
652 }
653
654 function get_service () {
655     set +e
656     local iter=$1
657     #local idx=$2
658     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
659     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
660
661     #if [ ${idx} -eq 1 ]; then
662         if [ ${iter} -eq 1 ] || [ ${iter} -gt 16 ]; then
663             curl http://${ctrlip}:5000
664             curl http://${ctrlip}:35357
665             curl http://${ctrlip}/identity
666             ${SSH} ${ctrlip} "
667                 source /opt/stack/devstack/openrc admin admin;
668                 env
669                 openstack configuration show --unmask;
670                 openstack service list
671                 openstack --os-cloud devstack-admin --os-region RegionOne compute service list
672                 openstack hypervisor list;
673             " || true
674             check_firewall
675         fi
676     #fi
677     set -e
678 }
679
680 # Check if rabbitmq is ready by looking for a pid in it's status.
681 # The function returns the status of the grep command which callers can check.
682 function is_rabbitmq_ready() {
683     local -r ip=$1
684     rm -f rabbit.txt
685     ${SSH} ${ip} "sudo rabbitmqctl status" > rabbit.txt
686     grep pid rabbit.txt
687 }
688
689 # retry the given command ($3) until success for a number of iterations ($1)
690 # sleeping ($2) between tries.
691 function retry() {
692     set +e
693     local -r -i max_tries=${1}
694     local -r -i sleep_time=${2}
695     local -r cmd=${3}
696     local -i retries=1
697     local -i rc=1
698     while true; do
699         echo "retry ${cmd}: attempt: ${retries}"
700         ${cmd}
701         rc=$?
702         if ((${rc} == 0)); then
703             break;
704         else
705             if ((${retries} == ${max_tries})); then
706                 break
707             else
708                 ((retries++))
709                 sleep ${sleep_time}
710             fi
711         fi
712     done
713     set -e
714     return ${rc}
715 }
716
717 # if we are using the new netvirt impl, as determined by the feature name
718 # odl-netvirt-openstack (note: old impl is odl-ovsdb-openstack) then we
719 # want PROVIDER_MAPPINGS to be used -- this should be fixed if we want to support
720 # external networks in legacy netvirt
721 if [[ ${CONTROLLERFEATURES} == *"odl-netvirt-openstack"* ]]; then
722   ODL_PROVIDER_MAPPINGS="\${PUBLIC_PHYSICAL_NETWORK}:${PUBLIC_BRIDGE}"
723 else
724   ODL_PROVIDER_MAPPINGS=
725 fi
726
727 # if we are using the old netvirt impl, as determined by the feature name
728 # odl-ovsdb-openstack (note: new impl is odl-netvirt-openstack) then we
729 # want ODL_L3 to be True.  New impl wants it False
730 if [[ ${CONTROLLERFEATURES} == *"odl-ovsdb-openstack"* ]]; then
731     ODL_L3=True
732 else
733     ODL_L3=False
734 fi
735
736 RECLONE=False
737
738 # Always compare the lists below against the devstack upstream ENABLED_SERVICES in
739 # https://github.com/openstack-dev/devstack/blob/master/stackrc#L52
740 # ODL CSIT does not use vnc, cinder, q-agt, q-l3 or horizon so they are not included below.
741 # collect performance stats
742 CORE_OS_CONTROL_SERVICES="dstat"
743 # Glance
744 CORE_OS_CONTROL_SERVICES+=",g-api,g-reg"
745 # Keystone
746 CORE_OS_CONTROL_SERVICES+=",key"
747 # Nova - services to support libvirt
748 CORE_OS_CONTROL_SERVICES+=",n-api,n-api-meta,n-cauth,n-cond,n-crt,n-obj,n-sch"
749 # ODL - services to connect to ODL
750 CORE_OS_CONTROL_SERVICES+=",odl-compute,odl-neutron"
751 # Neutron
752 CORE_OS_CONTROL_SERVICES+=",q-dhcp,q-meta,q-svc"
753 # Additional services
754 CORE_OS_CONTROL_SERVICES+=",mysql,rabbit"
755
756 # computes only need nova and odl
757 CORE_OS_COMPUTE_SERVICES="n-cpu,odl-compute"
758
759 cat > ${WORKSPACE}/disable_firewall.sh << EOF
760 sudo systemctl stop firewalld
761 # Open these ports to match the tutorial vms
762 # http/https (80/443), samba (445), netbios (137,138,139)
763 sudo iptables -I INPUT -p tcp -m multiport --dports 80,443,139,445 -j ACCEPT
764 sudo iptables -I INPUT -p udp -m multiport --dports 137,138 -j ACCEPT
765 # OpenStack services as well as vxlan tunnel ports 4789 and 9876
766 # identity public/admin (5000/35357), ampq (5672), vnc (6080), nova (8774), glance (9292), neutron (9696)
767 sudo sudo iptables -I INPUT -p tcp -m multiport --dports 5000,5672,6080,8774,9292,9696,35357 -j ACCEPT
768 sudo sudo iptables -I INPUT -p udp -m multiport --dports 4789,9876 -j ACCEPT
769 sudo iptables-save > /etc/sysconfig/iptables
770 sudo systemctl restart iptables
771 sudo iptables --line-numbers -nvL
772 true
773 EOF
774
775 cat > ${WORKSPACE}/get_devstack.sh << EOF
776 sudo systemctl stop firewalld
777 sudo yum install bridge-utils python-pip -y
778 #sudo systemctl stop  NetworkManager
779 #Disable NetworkManager and kill dhclient and dnsmasq
780 sudo systemctl stop NetworkManager
781 sudo killall dhclient
782 sudo killall dnsmasq
783 #Workaround for mysql failure
784 echo "127.0.0.1   localhost \${HOSTNAME}" >> /tmp/hosts
785 echo "::1         localhost \${HOSTNAME}" >> /tmp/hosts
786 sudo mv /tmp/hosts /etc/hosts
787 sudo mkdir /opt/stack
788 sudo chmod 777 /opt/stack
789 cd /opt/stack
790 echo "git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}"
791 git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}
792 cd devstack
793 if [ -n "${DEVSTACK_HASH}" ]; then
794     echo "git checkout ${DEVSTACK_HASH}"
795     git checkout ${DEVSTACK_HASH}
796 fi
797 git --no-pager log --pretty=format:'%h %<(13)%ar%<(13)%cr %<(20,trunc)%an%d %s\n%b' -n20
798 echo "workaround: adjust wait from 60s to 1800s (30m)"
799 sed -i 's/wait_for_compute 60/wait_for_compute 1800/g' /opt/stack/devstack/lib/nova
800 # TODO: modify sleep 1 to sleep 60, search wait_for_compute, then first sleep 1
801 # that would just reduce the number of logs in the compute stack.log
802 EOF
803
804 cat > "${WORKSPACE}/setup_host_cell_mapping.sh" << EOF
805 sudo nova-manage cell_v2 map_cell0
806 sudo nova-manage cell_v2 simple_cell_setup
807 sudo nova-manage db sync
808 sudo nova-manage cell_v2 discover_hosts
809 EOF
810
811 NUM_OPENSTACK_SITES=${NUM_OPENSTACK_SITES:-1}
812 compute_index=1
813 odl_index=1
814 os_node_list=()
815 os_interval=$(( ${NUM_OPENSTACK_SYSTEM} / ${NUM_OPENSTACK_SITES} ))
816 ha_proxy_index=${os_interval}
817
818 for i in `seq 1 ${NUM_OPENSTACK_SITES}`; do
819     if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
820         echo "Configure HAProxy"
821         ODL_HAPROXYIP_PARAM=OPENSTACK_HAPROXY_${i}_IP
822         ha_proxy_index=$(( $ha_proxy_index + $os_interval ))
823         odl_index=$(((i - 1) * 3 + 1))
824         ODL_IP_PARAM1=ODL_SYSTEM_$((odl_index++))_IP
825         ODL_IP_PARAM2=ODL_SYSTEM_$((odl_index++))_IP
826         ODL_IP_PARAM3=ODL_SYSTEM_$((odl_index++))_IP
827         ODLMGRIP[$i]=${!ODL_HAPROXYIP_PARAM} # ODL Northbound uses HAProxy VIP
828         ODL_OVS_MGRS[$i]="${!ODL_IP_PARAM1},${!ODL_IP_PARAM2},${!ODL_IP_PARAM3}" # OVSDB connects to all ODL IPs
829         configure_haproxy_for_neutron_requests ${!ODL_HAPROXYIP_PARAM} "${ODL_OVS_MGRS[$i]}"
830     else
831         ODL_IP_PARAM=ODL_SYSTEM_${i}_IP
832         ODL_OVS_MGRS[$i]="${!ODL_IP_PARAM}" # ODL Northbound uses ODL IP
833         ODLMGRIP[$i]=${!ODL_IP_PARAM} # OVSDB connects to ODL IP
834     fi
835 done
836
837 # Begin stacking the nodes, starting with the controller(s) and then the compute(s)
838
839 for i in `seq 1 ${NUM_OPENSTACK_CONTROL_NODES}`; do
840     CONTROLIP=OPENSTACK_CONTROL_NODE_${i}_IP
841     echo "Configure the stack of the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${CONTROLIP}"
842     scp ${WORKSPACE}/disable_firewall.sh ${!CONTROLIP}:/tmp
843     ${SSH} ${!CONTROLIP} "sudo bash /tmp/disable_firewall.sh"
844     create_etc_hosts ${!CONTROLIP}
845     scp ${WORKSPACE}/hosts_file ${!CONTROLIP}:/tmp/hosts
846     scp ${WORKSPACE}/get_devstack.sh ${!CONTROLIP}:/tmp
847     ${SSH} ${!CONTROLIP} "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
848     create_control_node_local_conf ${!CONTROLIP} ${ODLMGRIP[$i]} "${ODL_OVS_MGRS[$i]}"
849     scp ${WORKSPACE}/local.conf_control_${!CONTROLIP} ${!CONTROLIP}:/opt/stack/devstack/local.conf
850     echo "Stack the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${CONTROLIP}"
851     ssh ${!CONTROLIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
852     ssh ${!CONTROLIP} "ps -ef | grep stack.sh"
853     ssh ${!CONTROLIP} "ls -lrt /opt/stack/devstack/nohup.out"
854     os_node_list+=(${!CONTROLIP})
855     # Workaround for stable/newton jobs
856     # TODO: can this be removed now?
857     if [ "${ODL_ML2_BRANCH}" == "stable/newton" ]; then
858         ssh ${!CONTROLIP} "cd /opt/stack; git clone https://git.openstack.org/openstack/requirements; cd requirements; git checkout stable/newton; sed -i /appdirs/d upper-constraints.txt"
859     fi
860 done
861
862 # This is a backup to the CELLSV2_SETUP=singleconductor workaround. Keeping it here as an easy lookup
863 # if needed.
864 # Let the control node get started to avoid a race condition where the computes start and try to access
865 # the nova_cell1 on the control node before it is created. If that happens, the nova-compute service on the
866 # compute exits and does not attempt to restart.
867 # 180s is chosen because in test runs the control node usually finished in 17-20 minutes and the computes finished
868 # in 17 minutes, so take the max difference of 3 minutes and the jobs should still finish around the same time.
869 # one of the following errors is seen in the compute n-cpu.log:
870 # Unhandled error: NotAllowed: Connection.open: (530) NOT_ALLOWED - access to vhost 'nova_cell1' refused for user 'stackrabbit'
871 # AccessRefused: (0, 0): (403) ACCESS_REFUSED - Login was refused using authentication mechanism AMQPLAIN. For details see the broker logfile.
872 # Compare that timestamp to this log in the control stack.log: sudo rabbitmqctl set_permissions -p nova_cell1 stackrabbit
873 # If the n-cpu.log is earlier than the control stack.log timestamp then the failure condition is likely hit.
874 WAIT_FOR_RABBITMQ_MINUTES=60
875 echo "Wait a maximum of ${WAIT_FOR_RABBITMQ_MINUTES}m until rabbitmq is ready to allow the controller to create nova_cell1 before the computes need it"
876 retry ${WAIT_FOR_RABBITMQ_MINUTES} 60 "is_rabbitmq_ready ${OPENSTACK_CONTROL_NODE_1_IP}"
877 rc=$?
878 if ((${rc} == 0)); then
879     echo "rabbitmq is ready, starting ${NUM_OPENSTACK_COMPUTE_NODES} compute(s)"
880 else
881     echo "rabbitmq was not ready in ${WAIT_FOR_RABBITMQ_MINUTES}m"
882     collect_logs
883     exit 1
884 fi
885
886 for i in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
887     NUM_COMPUTES_PER_SITE=$((NUM_OPENSTACK_COMPUTE_NODES / NUM_OPENSTACK_SITES))
888     SITE_INDEX=$((((i - 1) / NUM_COMPUTES_PER_SITE) + 1)) # We need the site index to infer the control node IP for this compute
889     COMPUTEIP=OPENSTACK_COMPUTE_NODE_${i}_IP
890     CONTROLIP=OPENSTACK_CONTROL_NODE_${SITE_INDEX}_IP
891     echo "Configure the stack of the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${COMPUTEIP}"
892     scp ${WORKSPACE}/disable_firewall.sh "${!COMPUTEIP}:/tmp"
893     ${SSH} "${!COMPUTEIP}" "sudo bash /tmp/disable_firewall.sh"
894     create_etc_hosts ${!COMPUTEIP} ${!CONTROLIP}
895     scp ${WORKSPACE}/hosts_file ${!COMPUTEIP}:/tmp/hosts
896     scp ${WORKSPACE}/get_devstack.sh  ${!COMPUTEIP}:/tmp
897     ${SSH} ${!COMPUTEIP} "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
898     if [ "${ODL_ML2_BRANCH}" == "stable/ocata" ]; then
899         echo "Updating requirements for ${ODL_ML2_BRANCH}"
900         echo "Workaround for https://review.openstack.org/#/c/491032/"
901         echo "Modify upper-constraints to use libvirt-python 3.2.0"
902         ${SSH} ${!COMPUTEIP} "
903             cd /opt/stack;
904             git clone https://git.openstack.org/openstack/requirements;
905             cd requirements;
906             git checkout stable/ocata;
907             sed -i s/libvirt-python===2.5.0/libvirt-python===3.2.0/ upper-constraints.txt
908         "
909     fi
910     create_compute_node_local_conf ${!COMPUTEIP} ${!CONTROLIP} ${ODLMGRIP[$SITE_INDEX]} "${ODL_OVS_MGRS[$SITE_INDEX]}"
911     scp ${WORKSPACE}/local.conf_compute_${!COMPUTEIP} ${!COMPUTEIP}:/opt/stack/devstack/local.conf
912     echo "Stack the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${COMPUTEIP}"
913     ssh ${!COMPUTEIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
914     ssh ${!COMPUTEIP} "ps -ef | grep stack.sh"
915     os_node_list+=(${!COMPUTEIP})
916 done
917
918 echo "nodelist: ${os_node_list[*]}"
919
920 # This script runs on the openstack nodes. It greps for a string that devstack writes when stacking is complete.
921 # The script then writes a status depending on the grep output that is later scraped by the robot vm to control
922 # the status polling.
923 cat > ${WORKSPACE}/check_stacking.sh << EOF
924 > /tmp/stack_progress
925 ps -ef | grep "stack.sh" | grep -v grep
926 ret=\$?
927 if [ \${ret} -eq 1 ]; then
928     grep "This is your host IP address:" /opt/stack/devstack/nohup.out
929     if [ \$? -eq 0 ]; then
930         echo "Stacking Complete" > /tmp/stack_progress
931     else
932         echo "Stacking Failed" > /tmp/stack_progress
933     fi
934 elif [ \${ret} -eq 0 ]; then
935     echo "Still Stacking" > /tmp/stack_progress
936 fi
937 EOF
938
939 # devstack debugging
940 # get_hostnames
941
942 # Check if the stacking is finished. Poll all nodes every 60s for one hour.
943 iteration=0
944 in_progress=1
945 while [ ${in_progress} -eq 1 ]; do
946     iteration=$(($iteration + 1))
947     for index in "${!os_node_list[@]}"; do
948         echo "node $index ${os_node_list[index]}: checking stacking status attempt ${iteration} of 60"
949         scp ${WORKSPACE}/check_stacking.sh  ${os_node_list[index]}:/tmp
950         ${SSH} ${os_node_list[index]} "bash /tmp/check_stacking.sh"
951         scp ${os_node_list[index]}:/tmp/stack_progress .
952         cat stack_progress
953         stacking_status=`cat stack_progress`
954         # devstack debugging
955         # get_service "${iteration}" "${index}"
956         if [ "$stacking_status" == "Still Stacking" ]; then
957             continue
958         elif [ "$stacking_status" == "Stacking Failed" ]; then
959             echo "node $index ${os_node_list[index]}: stacking has failed"
960             collect_logs
961             exit 1
962         elif [ "$stacking_status" == "Stacking Complete" ]; then
963             echo "node $index ${os_node_list[index]}: stacking complete"
964             unset 'os_node_list[index]'
965             if  [ ${#os_node_list[@]} -eq 0 ]; then
966                 in_progress=0
967             fi
968         fi
969     done
970     echo "sleep for a minute before the next check"
971     sleep 60
972     if [ ${iteration} -eq 60 ]; then
973         echo "stacking has failed - took longer than 60m"
974         collect_logs
975         exit 1
976     fi
977 done
978
979 # Further configuration now that stacking is complete.
980 NUM_COMPUTES_PER_SITE=$((NUM_OPENSTACK_COMPUTE_NODES / NUM_OPENSTACK_SITES))
981 for i in `seq 1 ${NUM_OPENSTACK_SITES}`; do
982     echo "Configure the Control Node"
983     CONTROLIP=OPENSTACK_CONTROL_NODE_${i}_IP
984     # Gather Compute IPs for the site
985     for j in `seq 1 ${NUM_COMPUTES_PER_SITE}`; do
986         COMPUTE_INDEX=$(((i-1) * NUM_COMPUTES_PER_SITE + j))
987         IP_VAR=OPENSTACK_COMPUTE_NODE_${COMPUTE_INDEX}_IP
988         COMPUTE_IPS[$((j-1))]=${!IP_VAR}
989     done
990
991     echo "sleep for 60s and print hypervisor-list"
992     sleep 60
993     # In Ocata if we do not enable the n-cpu in control node then
994     # we need to discover hosts manually and ensure that they are mapped to cells.
995     # reference: https://ask.openstack.org/en/question/102256/how-to-configure-placement-service-for-compute-node-on-ocata/
996     if [ "${OPENSTACK_BRANCH}" == "stable/ocata" ]; then
997         scp ${WORKSPACE}/setup_host_cell_mapping.sh  ${!CONTROLIP}:/tmp
998         ${SSH} ${!CONTROLIP} "sudo bash /tmp/setup_host_cell_mapping.sh"
999     fi
1000     ${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; nova hypervisor-list"
1001     # in the case that we are doing openstack (control + compute) all in one node, then the number of hypervisors
1002     # will be the same as the number of openstack systems. However, if we are doing multinode openstack then the
1003     # assumption is we have a single control node and the rest are compute nodes, so the number of expected hypervisors
1004     # is one less than the total number of openstack systems
1005     if [ $((NUM_OPENSTACK_SYSTEM / NUM_OPENSTACK_SITES)) -eq 1 ]; then
1006         expected_num_hypervisors=1
1007     else
1008         expected_num_hypervisors=${NUM_COMPUTES_PER_SITE}
1009     fi
1010     num_hypervisors=$(${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; openstack hypervisor list -f value | wc -l" | tail -1 | tr -d "\r")
1011     if ! [ "${num_hypervisors}" ] || ! [ ${num_hypervisors} -eq ${expected_num_hypervisors} ]; then
1012         echo "Error: Only $num_hypervisors hypervisors detected, expected $expected_num_hypervisors"
1013         collect_logs
1014         exit 1
1015     fi
1016
1017     # upgrading pip, urllib3 and httplib2 so that tempest tests can be run on openstack control node
1018     # this needs to happen after devstack runs because it seems devstack is pulling in specific versions
1019     # of these libs that are not working for tempest.
1020     ${SSH} ${!CONTROLIP} "sudo pip install --upgrade pip"
1021     ${SSH} ${!CONTROLIP} "sudo pip install urllib3 --upgrade"
1022     ${SSH} ${!CONTROLIP} "sudo pip install httplib2 --upgrade"
1023
1024     # Gather Compute IPs for the site
1025     for j in `seq 1 ${NUM_COMPUTES_PER_SITE}`; do
1026         COMPUTE_INDEX=$(((i-1) * NUM_COMPUTES_PER_SITE + j))
1027         IP_VAR=OPENSTACK_COMPUTE_NODE_${COMPUTE_INDEX}_IP
1028         COMPUTE_IPS[$((j-1))]=${!IP_VAR}
1029     done
1030
1031     # External Network
1032     echo "prepare external networks by adding vxlan tunnels between all nodes on a separate bridge..."
1033     # FIXME Should there be a unique gateway IP and devstack index for each site?
1034     devstack_index=1
1035     for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
1036         # 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
1037         ${SSH} $ip "sudo ovs-vsctl --if-exists del-port br-int $PUBLIC_BRIDGE"
1038         ${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++))"
1039     done
1040
1041     # ipsec support
1042     if [ "${IPSEC_VXLAN_TUNNELS_ENABLED}" == "yes" ]; then
1043         ALL_NODES=(${!CONTROLIP} ${COMPUTE_IPS[*]})
1044         for ((inx_ip1=0; inx_ip1<$((${#ALL_NODES[@]} - 1)); inx_ip1++)); do
1045             for ((inx_ip2=$((inx_ip1 + 1)); inx_ip2<${#ALL_NODES[@]}; inx_ip2++)); do
1046                 KEY1=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
1047                 KEY2=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
1048                 ID=0x$(dd if=/dev/urandom count=4 bs=1 2> /dev/null| xxd -p -c 8)
1049                 ip1=${ALL_NODES[$inx_ip1]}
1050                 ip2=${ALL_NODES[$inx_ip2]}
1051                 ${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"
1052                 ${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"
1053                 ${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"
1054                 ${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"
1055
1056                 ${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"
1057                 ${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"
1058                 ${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"
1059                 ${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"
1060             done
1061         done
1062
1063         for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
1064             echo "ip xfrm configuration for node $ip:"
1065             ${SSH} $ip "sudo ip xfrm policy list"
1066             ${SSH} $ip "sudo ip xfrm state list"
1067         done
1068     fi
1069
1070     # Control Node - PUBLIC_BRIDGE will act as the external router
1071     # Parameter values below are used in integration/test - changing them requires updates in intergration/test as well
1072     EXTNET_GATEWAY_IP="10.10.10.250"
1073     EXTNET_INTERNET_IP="10.9.9.9"
1074     EXTNET_PNF_IP="10.10.10.253"
1075     ${SSH} ${!CONTROLIP} "sudo ifconfig ${PUBLIC_BRIDGE} up ${EXTNET_GATEWAY_IP}/24"
1076
1077     # Control Node - external net PNF simulation
1078     ${SSH} ${!CONTROLIP} "
1079         sudo ip netns add pnf_ns;
1080         sudo ip link add pnf_veth0 type veth peer name pnf_veth1;
1081         sudo ip link set pnf_veth1 netns pnf_ns;
1082         sudo ip link set pnf_veth0 up;
1083         sudo ip netns exec pnf_ns ifconfig pnf_veth1 up ${EXTNET_PNF_IP}/24;
1084         sudo ovs-vsctl add-port ${PUBLIC_BRIDGE} pnf_veth0;
1085     "
1086     # Control Node - set VXLAN TEP IP for Genius Auto TZ
1087     ${SSH} ${!CONTROLIP} "
1088         sudo ovs-vsctl set O . external_ids:tep-ip=${!CONTROLIP};
1089     "
1090
1091     # Control Node - external net internet address simulation
1092     ${SSH} ${!CONTROLIP} "
1093         sudo ip tuntap add dev internet_tap mode tap;
1094         sudo ifconfig internet_tap up ${EXTNET_INTERNET_IP}/24;
1095     "
1096
1097     # Computes
1098     compute_index=1
1099     for compute_ip in ${COMPUTE_IPS[*]}; do
1100         # Tunnel from controller to compute
1101         COMPUTEPORT=compute$(( compute_index++ ))_vxlan
1102         ${SSH} ${!CONTROLIP} "
1103             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
1104         "
1105         # Tunnel from compute to controller
1106         CONTROLPORT="control_vxlan"
1107         ${SSH} $compute_ip "
1108             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
1109         "
1110          #Compute Node - set VXLAN TEP IP for Genius Auto TZ
1111         ${SSH} $compute_ip "
1112             sudo ovs-vsctl set O . external_ids:tep-ip=${compute_ip};
1113         "
1114     done
1115 done
1116
1117 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
1118     odlmgrip=OPENSTACK_HAPROXY_1_IP
1119     HA_PROXY_IP=${!odlmgrip}
1120     HA_PROXY_1_IP=${!odlmgrip}
1121     odlmgrip2=OPENSTACK_HAPROXY_2_IP
1122     HA_PROXY_2_IP=${!odlmgrip2}
1123     odlmgrip3=OPENSTACK_HAPROXY_1_IP
1124     HA_PROXY_3_IP=${!odlmgrip3}
1125 else
1126     HA_PROXY_IP=${ODL_SYSTEM_IP}
1127     HA_PROXY_1_IP=${ODL_SYSTEM_1_IP}
1128     HA_PROXY_2_IP=${ODL_SYSTEM_2_IP}
1129     HA_PROXY_3_IP=${ODL_SYSTEM_3_IP}
1130 fi
1131
1132 echo "Locating test plan to use..."
1133 testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}"
1134 if [ ! -f "${testplan_filepath}" ]; then
1135     testplan_filepath="${WORKSPACE}/test/csit/testplans/${TESTPLAN}"
1136 fi
1137
1138 echo "Changing the testplan path..."
1139 cat "${testplan_filepath}" | sed "s:integration:${WORKSPACE}:" > testplan.txt
1140 cat testplan.txt
1141
1142 # Use the testplan if specific SUITES are not defined.
1143 if [ -z "${SUITES}" ]; then
1144     SUITES=`egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' '`
1145 else
1146     newsuites=""
1147     workpath="${WORKSPACE}/test/csit/suites"
1148     for suite in ${SUITES}; do
1149         fullsuite="${workpath}/${suite}"
1150         if [ -z ${newsuites} ]; then
1151             newsuites+=${fullsuite}
1152         else
1153             newsuites+=" "${fullsuite}
1154         fi
1155     done
1156     SUITES=${newsuites}
1157 fi
1158
1159 # TODO: run openrc on control node and then scrape the vars from it
1160 # Environment Variables Needed to execute Openstack Client for NetVirt Jobs
1161 cat > /tmp/os_netvirt_client_rc << EOF
1162 export OS_USERNAME=admin
1163 export OS_PASSWORD=admin
1164 export OS_PROJECT_NAME=admin
1165 export OS_USER_DOMAIN_NAME=default
1166 export OS_PROJECT_DOMAIN_NAME=default
1167 export OS_AUTH_URL="http://${!CONTROLIP}/identity"
1168 export OS_IDENTITY_API_VERSION=3
1169 export OS_IMAGE_API_VERSION=2
1170 export OS_TENANT_NAME=admin
1171 unset OS_CLOUD
1172 EOF
1173
1174 source /tmp/os_netvirt_client_rc
1175
1176 echo "Starting Robot test suites ${SUITES} ..."
1177 # please add pybot -v arguments on a single line and alphabetized
1178 suite_num=0
1179 for suite in ${SUITES}; do
1180     # prepend a incrmental counter to the suite name so that the full robot log combining all the suites as is done
1181     # in the rebot step below will list all the suites in chronological order as rebot seems to alphabatize them
1182     let "suite_num = suite_num + 1"
1183     suite_index="$(printf %02d ${suite_num})"
1184     suite_name="$(basename ${suite} | cut -d. -f1)"
1185     log_name="${suite_index}_${suite_name}"
1186     pybot -N ${log_name} --removekeywords wuks -c critical -e exclude -e skip_if_${DISTROSTREAM} \
1187     --log log_${log_name}.html --report None --output output_${log_name}.xml \
1188     -v BUNDLEFOLDER:${BUNDLEFOLDER} \
1189     -v BUNDLE_URL:${ACTUAL_BUNDLE_URL} \
1190     -v CONTROLLER_USER:${USER} \
1191     -v DEVSTACK_DEPLOY_PATH:/opt/stack/devstack \
1192     -v HA_PROXY_IP:${HA_PROXY_IP} \
1193     -v HA_PROXY_1_IP:${HA_PROXY_1_IP} \
1194     -v HA_PROXY_2_IP:${HA_PROXY_2_IP} \
1195     -v HA_PROXY_3_IP:${HA_PROXY_3_IP} \
1196     -v JDKVERSION:${JDKVERSION} \
1197     -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \
1198     -v NUM_ODL_SYSTEM:${NUM_ODL_SYSTEM} \
1199     -v NUM_OPENSTACK_SITES:${NUM_OPENSTACK_SITES} \
1200     -v NUM_OS_SYSTEM:${NUM_OPENSTACK_SYSTEM} \
1201     -v NUM_TOOLS_SYSTEM:${NUM_TOOLS_SYSTEM} \
1202     -v ODL_SNAT_MODE:${ODL_SNAT_MODE} \
1203     -v ODL_STREAM:${DISTROSTREAM} \
1204     -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} \
1205     -v ODL_SYSTEM_1_IP:${ODL_SYSTEM_1_IP} \
1206     -v ODL_SYSTEM_2_IP:${ODL_SYSTEM_2_IP} \
1207     -v ODL_SYSTEM_3_IP:${ODL_SYSTEM_3_IP} \
1208     -v ODL_SYSTEM_4_IP:${ODL_SYSTEM_4_IP} \
1209     -v ODL_SYSTEM_5_IP:${ODL_SYSTEM_5_IP} \
1210     -v ODL_SYSTEM_6_IP:${ODL_SYSTEM_6_IP} \
1211     -v ODL_SYSTEM_7_IP:${ODL_SYSTEM_7_IP} \
1212     -v ODL_SYSTEM_8_IP:${ODL_SYSTEM_8_IP} \
1213     -v ODL_SYSTEM_9_IP:${ODL_SYSTEM_9_IP} \
1214     -v OS_CONTROL_NODE_IP:${OPENSTACK_CONTROL_NODE_1_IP} \
1215     -v OS_CONTROL_NODE_1_IP:${OPENSTACK_CONTROL_NODE_1_IP} \
1216     -v OS_CONTROL_NODE_2_IP:${OPENSTACK_CONTROL_NODE_2_IP} \
1217     -v OS_CONTROL_NODE_3_IP:${OPENSTACK_CONTROL_NODE_3_IP} \
1218     -v OPENSTACK_BRANCH:${OPENSTACK_BRANCH} \
1219     -v OS_COMPUTE_1_IP:${OPENSTACK_COMPUTE_NODE_1_IP} \
1220     -v OS_COMPUTE_2_IP:${OPENSTACK_COMPUTE_NODE_2_IP} \
1221     -v OS_COMPUTE_3_IP:${OPENSTACK_COMPUTE_NODE_3_IP} \
1222     -v OS_COMPUTE_4_IP:${OPENSTACK_COMPUTE_NODE_4_IP} \
1223     -v OS_COMPUTE_5_IP:${OPENSTACK_COMPUTE_NODE_5_IP} \
1224     -v OS_COMPUTE_6_IP:${OPENSTACK_COMPUTE_NODE_6_IP} \
1225     -v OS_USER:${USER} \
1226     -v PUBLIC_PHYSICAL_NETWORK:${PUBLIC_PHYSICAL_NETWORK} \
1227     -v SECURITY_GROUP_MODE:${SECURITY_GROUP_MODE} \
1228     -v TOOLS_SYSTEM_IP:${TOOLS_SYSTEM_1_IP} \
1229     -v TOOLS_SYSTEM_1_IP:${TOOLS_SYSTEM_1_IP} \
1230     -v TOOLS_SYSTEM_2_IP:${TOOLS_SYSTEM_2_IP} \
1231     -v USER_HOME:${HOME} \
1232     -v WORKSPACE:/tmp \
1233     ${TESTOPTIONS} ${suite} || true
1234 done
1235 #rebot exit codes seem to be different
1236 rebot --output ${WORKSPACE}/output.xml --log log_full.html --report None -N openstack output_*.xml || true
1237
1238 echo "Examining the files in data/log and checking file size"
1239 ssh ${ODL_SYSTEM_IP} "ls -altr /tmp/${BUNDLEFOLDER}/data/log/"
1240 ssh ${ODL_SYSTEM_IP} "du -hs /tmp/${BUNDLEFOLDER}/data/log/*"
1241
1242 echo "Tests Executed"
1243 collect_logs
1244
1245 true  # perhaps Jenkins is testing last exit code
1246 # vim: ts=4 sw=4 sts=4 et ft=sh :