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