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