Write exceptions to file
[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         mv /tmp/odl${i}_exceptions.txt ${NODE_FOLDER}
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     ${SSH} ${ip} "sudo rabbitmqctl list_vhosts" > rabbit.txt
877     grep ${grepfor} rabbit.txt
878 }
879
880 # retry the given command ($3) until success for a number of iterations ($1)
881 # sleeping ($2) between tries.
882 function retry() {
883     local -r -i max_tries=${1}
884     local -r -i sleep_time=${2}
885     local -r cmd=${3}
886     local -i retries=1
887     local -i rc=1
888     while true; do
889         echo "retry ${cmd}: attempt: ${retries}"
890         ${cmd}
891         rc=$?
892         if ((${rc} == 0)); then
893             break;
894         else
895             if ((${retries} == ${max_tries})); then
896                 break
897             else
898                 ((retries++))
899                 sleep ${sleep_time}
900             fi
901         fi
902     done
903     return ${rc}
904 }
905
906 # if we are using the new netvirt impl, as determined by the feature name
907 # odl-netvirt-openstack (note: old impl is odl-ovsdb-openstack) then we
908 # want PROVIDER_MAPPINGS to be used -- this should be fixed if we want to support
909 # external networks in legacy netvirt
910 if [[ ${CONTROLLERFEATURES} == *"odl-netvirt-openstack"* ]]; then
911   ODL_PROVIDER_MAPPINGS="\${PUBLIC_PHYSICAL_NETWORK}:${PUBLIC_BRIDGE}"
912 else
913   ODL_PROVIDER_MAPPINGS=
914 fi
915
916 # if we are using the old netvirt impl, as determined by the feature name
917 # odl-ovsdb-openstack (note: new impl is odl-netvirt-openstack) then we
918 # want ODL_L3 to be True.  New impl wants it False
919 if [[ ${CONTROLLERFEATURES} == *"odl-ovsdb-openstack"* ]]; then
920     ODL_L3=True
921 else
922     ODL_L3=False
923 fi
924
925 RECLONE=False
926 ODL_PORT=8181
927
928 # Always compare the lists below against the devstack upstream ENABLED_SERVICES in
929 # https://github.com/openstack-dev/devstack/blob/master/stackrc#L52
930 # ODL CSIT does not use vnc, cinder, q-agt, q-l3 or horizon so they are not included below.
931 # collect performance stats
932 CORE_OS_CONTROL_SERVICES="dstat"
933 # Glance
934 CORE_OS_CONTROL_SERVICES+=",g-api,g-reg"
935 # Keystone
936 CORE_OS_CONTROL_SERVICES+=",key"
937 # Nova - services to support libvirt
938 CORE_OS_CONTROL_SERVICES+=",n-api,n-api-meta,n-cauth,n-cond,n-crt,n-obj,n-sch"
939 # ODL - services to connect to ODL
940 CORE_OS_CONTROL_SERVICES+=",odl-compute,odl-neutron"
941 # Additional services
942 CORE_OS_CONTROL_SERVICES+=",mysql,rabbit"
943
944 # collect performance stats
945 CORE_OS_COMPUTE_SERVICES="dstat"
946 # computes only need nova and odl
947 CORE_OS_COMPUTE_SERVICES+=",n-cpu,odl-compute"
948
949 cat > ${WORKSPACE}/disable_firewall.sh << EOF
950 sudo systemctl stop firewalld
951 # Open these ports to match the tutorial vms
952 # http/https (80/443), samba (445), netbios (137,138,139)
953 sudo iptables -I INPUT -p tcp -m multiport --dports 80,443,139,445 -j ACCEPT
954 sudo iptables -I INPUT -p udp -m multiport --dports 137,138 -j ACCEPT
955 # OpenStack services as well as vxlan tunnel ports 4789 and 9876
956 # identity public/admin (5000/35357), ampq (5672), vnc (6080), nova (8774), glance (9292), neutron (9696)
957 sudo sudo iptables -I INPUT -p tcp -m multiport --dports 5000,5672,6080,8774,9292,9696,35357 -j ACCEPT
958 sudo sudo iptables -I INPUT -p udp -m multiport --dports 4789,9876 -j ACCEPT
959 sudo iptables-save > /etc/sysconfig/iptables
960 sudo systemctl restart iptables
961 sudo iptables --line-numbers -nvL
962 true
963 EOF
964
965 cat > ${WORKSPACE}/get_devstack.sh << EOF
966 sudo systemctl stop firewalld
967 sudo yum install bridge-utils python-pip -y
968 #sudo systemctl stop  NetworkManager
969 #Disable NetworkManager and kill dhclient and dnsmasq
970 sudo systemctl stop NetworkManager
971 sudo killall dhclient
972 sudo killall dnsmasq
973 #Workaround for mysql failure
974 echo "127.0.0.1   localhost \${HOSTNAME}" >> /tmp/hosts
975 echo "::1         localhost \${HOSTNAME}" >> /tmp/hosts
976 sudo mv /tmp/hosts /etc/hosts
977 sudo mkdir /opt/stack
978 echo "Create RAM disk for /opt/stack"
979 sudo mount -t tmpfs -o size=2G tmpfs /opt/stack
980 sudo chmod 777 /opt/stack
981 cd /opt/stack
982 echo "git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}"
983 git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}
984 cd devstack
985 if [ -n "${DEVSTACK_HASH}" ]; then
986     echo "git checkout ${DEVSTACK_HASH}"
987     git checkout ${DEVSTACK_HASH}
988 fi
989 echo "workaround: Restore NEUTRON_CREATE_INITIAL_NETWORKS flag"
990 if [ "${OPENSTACK_BRANCH}" == "stable/queens" ]; then
991     git config --local user.email jenkins@opendaylight.org
992     git config --local user.name jenkins
993     git fetch https://git.openstack.org/openstack-dev/devstack refs/changes/99/550499/1 && git cherry-pick FETCH_HEAD
994 fi
995 git --no-pager log --pretty=format:'%h %<(13)%ar%<(13)%cr %<(20,trunc)%an%d %s%b' -n20
996 echo
997 echo "workaround: adjust wait from 60s to 1800s (30m)"
998 sed -i 's/wait_for_compute 60/wait_for_compute 1800/g' /opt/stack/devstack/lib/nova
999 # TODO: modify sleep 1 to sleep 60, search wait_for_compute, then first sleep 1
1000 # that would just reduce the number of logs in the compute stack.log
1001
1002 echo "workaround: do not upgrade openvswitch"
1003 sudo yum install -y yum-plugin-versionlock
1004 sudo yum versionlock add openvswitch
1005
1006 #Install qemu-img command in Control Node for Pike
1007 echo "Install qemu-img application"
1008 sudo yum install -y qemu-img
1009 EOF
1010
1011 cat > "${WORKSPACE}/setup_host_cell_mapping.sh" << EOF
1012 sudo nova-manage cell_v2 map_cell0
1013 sudo nova-manage cell_v2 simple_cell_setup
1014 sudo nova-manage db sync
1015 sudo nova-manage cell_v2 discover_hosts
1016 EOF
1017
1018 NUM_OPENSTACK_SITES=${NUM_OPENSTACK_SITES:-1}
1019 compute_index=1
1020 odl_index=1
1021 os_node_list=()
1022 os_interval=$(( ${NUM_OPENSTACK_SYSTEM} / ${NUM_OPENSTACK_SITES} ))
1023 ha_proxy_index=${os_interval}
1024
1025 for i in `seq 1 ${NUM_OPENSTACK_SITES}`; do
1026     if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
1027         echo "Configure HAProxy"
1028         ODL_HAPROXYIP_PARAM=OPENSTACK_HAPROXY_${i}_IP
1029         ha_proxy_index=$(( $ha_proxy_index + $os_interval ))
1030         odl_index=$(((i - 1) * 3 + 1))
1031         ODL_IP_PARAM1=ODL_SYSTEM_$((odl_index++))_IP
1032         ODL_IP_PARAM2=ODL_SYSTEM_$((odl_index++))_IP
1033         ODL_IP_PARAM3=ODL_SYSTEM_$((odl_index++))_IP
1034         ODLMGRIP[$i]=${!ODL_HAPROXYIP_PARAM} # ODL Northbound uses HAProxy VIP
1035         ODL_OVS_MGRS[$i]="${!ODL_IP_PARAM1},${!ODL_IP_PARAM2},${!ODL_IP_PARAM3}" # OVSDB connects to all ODL IPs
1036         configure_haproxy_for_neutron_requests ${!ODL_HAPROXYIP_PARAM} "${ODL_OVS_MGRS[$i]}"
1037     else
1038         ODL_IP_PARAM=ODL_SYSTEM_${i}_IP
1039         ODL_OVS_MGRS[$i]="${!ODL_IP_PARAM}" # ODL Northbound uses ODL IP
1040         ODLMGRIP[$i]=${!ODL_IP_PARAM} # OVSDB connects to ODL IP
1041     fi
1042 done
1043
1044 # Begin stacking the nodes, starting with the controller(s) and then the compute(s)
1045
1046 for i in `seq 1 ${NUM_OPENSTACK_CONTROL_NODES}`; do
1047     CONTROLIP=OPENSTACK_CONTROL_NODE_${i}_IP
1048     echo "Configure the stack of the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${!CONTROLIP}"
1049     scp ${WORKSPACE}/disable_firewall.sh ${!CONTROLIP}:/tmp
1050     ${SSH} ${!CONTROLIP} "sudo bash /tmp/disable_firewall.sh"
1051     create_etc_hosts ${!CONTROLIP}
1052     scp ${WORKSPACE}/hosts_file ${!CONTROLIP}:/tmp/hosts
1053     scp ${WORKSPACE}/get_devstack.sh ${!CONTROLIP}:/tmp
1054     # devstack Master is yet to migrate fully to lib/neutron, there are some ugly hacks that is
1055     # affecting the stacking.
1056     #Workaround For Queens, Make the physical Network as physnet1 in lib/neutron
1057     #Workaround Comment out creating initial Networks in lib/neutron
1058     ${SSH} ${!CONTROLIP} "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
1059     if [ "${ODL_ML2_BRANCH}" == "stable/queens" ]; then
1060        ssh ${!CONTROLIP} "sed -i 's/flat_networks public/flat_networks public,physnet1/' /opt/stack/devstack/lib/neutron"
1061        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"
1062     fi
1063     create_control_node_local_conf ${!CONTROLIP} ${ODLMGRIP[$i]} "${ODL_OVS_MGRS[$i]}"
1064     scp ${WORKSPACE}/local.conf_control_${!CONTROLIP} ${!CONTROLIP}:/opt/stack/devstack/local.conf
1065     echo "Install rdo release to avoid incompatible Package versions"
1066     install_rdo_release ${!CONTROLIP}
1067     echo "Stack the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${CONTROLIP}"
1068     ssh ${!CONTROLIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
1069     ssh ${!CONTROLIP} "ps -ef | grep stack.sh"
1070     ssh ${!CONTROLIP} "ls -lrt /opt/stack/devstack/nohup.out"
1071     os_node_list+=("${!CONTROLIP}")
1072 done
1073
1074 # This is a backup to the CELLSV2_SETUP=singleconductor workaround. Keeping it here as an easy lookup
1075 # if needed.
1076 # Let the control node get started to avoid a race condition where the computes start and try to access
1077 # the nova_cell1 on the control node before it is created. If that happens, the nova-compute service on the
1078 # compute exits and does not attempt to restart.
1079 # 180s is chosen because in test runs the control node usually finished in 17-20 minutes and the computes finished
1080 # in 17 minutes, so take the max difference of 3 minutes and the jobs should still finish around the same time.
1081 # one of the following errors is seen in the compute n-cpu.log:
1082 # Unhandled error: NotAllowed: Connection.open: (530) NOT_ALLOWED - access to vhost 'nova_cell1' refused for user 'stackrabbit'
1083 # AccessRefused: (0, 0): (403) ACCESS_REFUSED - Login was refused using authentication mechanism AMQPLAIN. For details see the broker logfile.
1084 # Compare that timestamp to this log in the control stack.log: sudo rabbitmqctl set_permissions -p nova_cell1 stackrabbit
1085 # If the n-cpu.log is earlier than the control stack.log timestamp then the failure condition is likely hit.
1086 if [ ${NUM_OPENSTACK_COMPUTE_NODES} -gt 0 ]; then
1087     WAIT_FOR_RABBITMQ_MINUTES=60
1088     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"
1089     set +e
1090     retry ${WAIT_FOR_RABBITMQ_MINUTES} 60 "is_rabbitmq_ready ${OPENSTACK_CONTROL_NODE_1_IP}"
1091     rc=$?
1092     set -e
1093     if ((${rc} == 0)); then
1094       echo "rabbitmq is ready, starting ${NUM_OPENSTACK_COMPUTE_NODES} compute(s)"
1095     else
1096       echo "rabbitmq was not ready in ${WAIT_FOR_RABBITMQ_MINUTES}m"
1097       collect_logs
1098       exit 1
1099     fi
1100 fi
1101
1102 for i in `seq 1 ${NUM_OPENSTACK_COMPUTE_NODES}`; do
1103     NUM_COMPUTES_PER_SITE=$((NUM_OPENSTACK_COMPUTE_NODES / NUM_OPENSTACK_SITES))
1104     SITE_INDEX=$((((i - 1) / NUM_COMPUTES_PER_SITE) + 1)) # We need the site index to infer the control node IP for this compute
1105     COMPUTEIP=OPENSTACK_COMPUTE_NODE_${i}_IP
1106     CONTROLIP=OPENSTACK_CONTROL_NODE_${SITE_INDEX}_IP
1107     echo "Configure the stack of the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${!COMPUTEIP}"
1108     scp ${WORKSPACE}/disable_firewall.sh "${!COMPUTEIP}:/tmp"
1109     ${SSH} "${!COMPUTEIP}" "sudo bash /tmp/disable_firewall.sh"
1110     create_etc_hosts ${!COMPUTEIP} ${!CONTROLIP}
1111     scp ${WORKSPACE}/hosts_file ${!COMPUTEIP}:/tmp/hosts
1112     scp ${WORKSPACE}/get_devstack.sh  ${!COMPUTEIP}:/tmp
1113     ${SSH} ${!COMPUTEIP} "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
1114     if [ "${ODL_ML2_BRANCH}" == "stable/pike" ]; then
1115         echo "Updating requirements for ${ODL_ML2_BRANCH}"
1116         echo "Workaround for libvirt-python failing installation"
1117         echo "Modify upper-constraints to use libvirt-python 4.2.0"
1118         fix_libvirt_version_n_cpu_pike ${!COMPUTEIP}
1119     fi
1120     create_compute_node_local_conf ${!COMPUTEIP} ${!CONTROLIP} ${ODLMGRIP[$SITE_INDEX]} "${ODL_OVS_MGRS[$SITE_INDEX]}"
1121     scp ${WORKSPACE}/local.conf_compute_${!COMPUTEIP} ${!COMPUTEIP}:/opt/stack/devstack/local.conf
1122     echo "Install rdo release to avoid incompatible Package versions"
1123     install_rdo_release ${!COMPUTEIP}
1124     echo "Stack the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${COMPUTEIP}"
1125     ssh ${!COMPUTEIP} "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
1126     ssh ${!COMPUTEIP} "ps -ef | grep stack.sh"
1127     os_node_list+=("${!COMPUTEIP}")
1128 done
1129
1130 echo "nodelist: ${os_node_list[*]}"
1131
1132 # This script runs on the openstack nodes. It greps for a string that devstack writes when stacking is complete.
1133 # The script then writes a status depending on the grep output that is later scraped by the robot vm to control
1134 # the status polling.
1135 cat > ${WORKSPACE}/check_stacking.sh << EOF
1136 > /tmp/stack_progress
1137 ps -ef | grep "stack.sh" | grep -v grep
1138 ret=\$?
1139 if [ \${ret} -eq 1 ]; then
1140     grep "This is your host IP address:" /opt/stack/devstack/nohup.out
1141     if [ \$? -eq 0 ]; then
1142         echo "Stacking Complete" > /tmp/stack_progress
1143     else
1144         echo "Stacking Failed" > /tmp/stack_progress
1145     fi
1146 elif [ \${ret} -eq 0 ]; then
1147     echo "Still Stacking" > /tmp/stack_progress
1148 fi
1149 EOF
1150
1151 # devstack debugging
1152 # get_hostnames
1153
1154 # Check if the stacking is finished. Poll all nodes every 60s for one hour.
1155 iteration=0
1156 in_progress=1
1157 while [ ${in_progress} -eq 1 ]; do
1158     iteration=$(($iteration + 1))
1159     for index in "${!os_node_list[@]}"; do
1160         echo "node $index ${os_node_list[index]}: checking stacking status attempt ${iteration} of 60"
1161         scp ${WORKSPACE}/check_stacking.sh  ${os_node_list[index]}:/tmp
1162         ${SSH} ${os_node_list[index]} "bash /tmp/check_stacking.sh"
1163         scp ${os_node_list[index]}:/tmp/stack_progress .
1164         cat stack_progress
1165         stacking_status=`cat stack_progress`
1166         # devstack debugging
1167         # get_service "${iteration}" "${index}"
1168         if [ "$stacking_status" == "Still Stacking" ]; then
1169             continue
1170         elif [ "$stacking_status" == "Stacking Failed" ]; then
1171             echo "node $index ${os_node_list[index]}: stacking has failed"
1172             collect_logs
1173             exit 1
1174         elif [ "$stacking_status" == "Stacking Complete" ]; then
1175             echo "node $index ${os_node_list[index]}: stacking complete"
1176             unset 'os_node_list[index]'
1177             if  [ ${#os_node_list[@]} -eq 0 ]; then
1178                 in_progress=0
1179             fi
1180         fi
1181     done
1182     echo "sleep for a minute before the next check"
1183     sleep 60
1184     if [ ${iteration} -eq 60 ]; then
1185         echo "stacking has failed - took longer than 60m"
1186         collect_logs
1187         exit 1
1188     fi
1189 done
1190
1191 # Further configuration now that stacking is complete.
1192 NUM_COMPUTES_PER_SITE=$((NUM_OPENSTACK_COMPUTE_NODES / NUM_OPENSTACK_SITES))
1193 for i in `seq 1 ${NUM_OPENSTACK_SITES}`; do
1194     echo "Configure the Control Node"
1195     CONTROLIP=OPENSTACK_CONTROL_NODE_${i}_IP
1196     # Gather Compute IPs for the site
1197     for j in `seq 1 ${NUM_COMPUTES_PER_SITE}`; do
1198         COMPUTE_INDEX=$(((i-1) * NUM_COMPUTES_PER_SITE + j))
1199         IP_VAR=OPENSTACK_COMPUTE_NODE_${COMPUTE_INDEX}_IP
1200         COMPUTE_IPS[$((j-1))]=${!IP_VAR}
1201     done
1202
1203     echo "sleep for 60s and print hypervisor-list"
1204     sleep 60
1205     ${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; nova hypervisor-list"
1206     # in the case that we are doing openstack (control + compute) all in one node, then the number of hypervisors
1207     # will be the same as the number of openstack systems. However, if we are doing multinode openstack then the
1208     # assumption is we have a single control node and the rest are compute nodes, so the number of expected hypervisors
1209     # is one less than the total number of openstack systems
1210     if [ $((NUM_OPENSTACK_SYSTEM / NUM_OPENSTACK_SITES)) -eq 1 ]; then
1211         expected_num_hypervisors=1
1212     else
1213         expected_num_hypervisors=${NUM_COMPUTES_PER_SITE}
1214     fi
1215     num_hypervisors=$(${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; openstack hypervisor list -f value | wc -l" | tail -1 | tr -d "\r")
1216     if ! [ "${num_hypervisors}" ] || ! [ ${num_hypervisors} -eq ${expected_num_hypervisors} ]; then
1217         echo "Error: Only $num_hypervisors hypervisors detected, expected $expected_num_hypervisors"
1218         collect_logs
1219         exit 1
1220     fi
1221
1222     # upgrading pip, urllib3 and httplib2 so that tempest tests can be run on openstack control node
1223     # this needs to happen after devstack runs because it seems devstack is pulling in specific versions
1224     # of these libs that are not working for tempest.
1225     ${SSH} ${!CONTROLIP} "sudo pip install --upgrade pip"
1226     ${SSH} ${!CONTROLIP} "sudo pip install urllib3 --upgrade"
1227     ${SSH} ${!CONTROLIP} "sudo pip install httplib2 --upgrade"
1228
1229     # Gather Compute IPs for the site
1230     for j in `seq 1 ${NUM_COMPUTES_PER_SITE}`; do
1231         COMPUTE_INDEX=$(((i-1) * NUM_COMPUTES_PER_SITE + j))
1232         IP_VAR=OPENSTACK_COMPUTE_NODE_${COMPUTE_INDEX}_IP
1233         COMPUTE_IPS[$((j-1))]=${!IP_VAR}
1234     done
1235
1236     # External Network
1237     echo "prepare external networks by adding vxlan tunnels between all nodes on a separate bridge..."
1238     # FIXME Should there be a unique gateway IP and devstack index for each site?
1239     devstack_index=1
1240     for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
1241         # 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
1242         ${SSH} $ip "sudo ovs-vsctl --if-exists del-port br-int $PUBLIC_BRIDGE"
1243         ${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++))"
1244     done
1245
1246     # ipsec support
1247     if [ "${IPSEC_VXLAN_TUNNELS_ENABLED}" == "yes" ]; then
1248         # shellcheck disable=SC2206
1249         ALL_NODES=(${!CONTROLIP} ${COMPUTE_IPS[*]})
1250         for ((inx_ip1=0; inx_ip1<$((${#ALL_NODES[@]} - 1)); inx_ip1++)); do
1251             for ((inx_ip2=$((inx_ip1 + 1)); inx_ip2<${#ALL_NODES[@]}; inx_ip2++)); do
1252                 KEY1=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
1253                 KEY2=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
1254                 ID=0x$(dd if=/dev/urandom count=4 bs=1 2> /dev/null| xxd -p -c 8)
1255                 ip1=${ALL_NODES[$inx_ip1]}
1256                 ip2=${ALL_NODES[$inx_ip2]}
1257                 ${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"
1258                 ${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"
1259                 ${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"
1260                 ${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"
1261
1262                 ${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"
1263                 ${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"
1264                 ${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"
1265                 ${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"
1266             done
1267         done
1268
1269         for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
1270             echo "ip xfrm configuration for node $ip:"
1271             ${SSH} $ip "sudo ip xfrm policy list"
1272             ${SSH} $ip "sudo ip xfrm state list"
1273         done
1274     fi
1275
1276     # Control Node - PUBLIC_BRIDGE will act as the external router
1277     # Parameter values below are used in integration/test - changing them requires updates in intergration/test as well
1278     EXTNET_GATEWAY_IP="10.10.10.250"
1279     EXTNET_INTERNET_IP="10.9.9.9"
1280     EXTNET_PNF_IP="10.10.10.253"
1281     ${SSH} ${!CONTROLIP} "sudo ifconfig ${PUBLIC_BRIDGE} up ${EXTNET_GATEWAY_IP}/24"
1282
1283     # Control Node - external net PNF simulation
1284     ${SSH} ${!CONTROLIP} "
1285         sudo ip netns add pnf_ns;
1286         sudo ip link add pnf_veth0 type veth peer name pnf_veth1;
1287         sudo ip link set pnf_veth1 netns pnf_ns;
1288         sudo ip link set pnf_veth0 up;
1289         sudo ip netns exec pnf_ns ifconfig pnf_veth1 up ${EXTNET_PNF_IP}/24;
1290         sudo ovs-vsctl add-port ${PUBLIC_BRIDGE} pnf_veth0;
1291     "
1292
1293     # Control Node - external net internet address simulation
1294     ${SSH} ${!CONTROLIP} "
1295         sudo ip tuntap add dev internet_tap mode tap;
1296         sudo ifconfig internet_tap up ${EXTNET_INTERNET_IP}/24;
1297     "
1298
1299     # Computes
1300     compute_index=1
1301     for compute_ip in ${COMPUTE_IPS[*]}; do
1302         # Tunnel from controller to compute
1303         COMPUTEPORT=compute$(( compute_index++ ))_vxlan
1304         ${SSH} ${!CONTROLIP} "
1305             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
1306         "
1307         # Tunnel from compute to controller
1308         CONTROLPORT="control_vxlan"
1309         ${SSH} $compute_ip "
1310             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
1311         "
1312     done
1313 done
1314
1315 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
1316     odlmgrip=OPENSTACK_HAPROXY_1_IP
1317     HA_PROXY_IP=${!odlmgrip}
1318     HA_PROXY_1_IP=${!odlmgrip}
1319     odlmgrip2=OPENSTACK_HAPROXY_2_IP
1320     HA_PROXY_2_IP=${!odlmgrip2}
1321     odlmgrip3=OPENSTACK_HAPROXY_1_IP
1322     HA_PROXY_3_IP=${!odlmgrip3}
1323 else
1324     HA_PROXY_IP=${ODL_SYSTEM_IP}
1325     HA_PROXY_1_IP=${ODL_SYSTEM_1_IP}
1326     HA_PROXY_2_IP=${ODL_SYSTEM_2_IP}
1327     HA_PROXY_3_IP=${ODL_SYSTEM_3_IP}
1328 fi
1329
1330 echo "Locating test plan to use..."
1331 testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}"
1332 if [ ! -f "${testplan_filepath}" ]; then
1333     testplan_filepath="${WORKSPACE}/test/csit/testplans/${TESTPLAN}"
1334 fi
1335
1336 echo "Changing the testplan path..."
1337 cat "${testplan_filepath}" | sed "s:integration:${WORKSPACE}:" > testplan.txt
1338 cat testplan.txt
1339
1340 # Use the testplan if specific SUITES are not defined.
1341 if [ -z "${SUITES}" ]; then
1342     SUITES=`egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' '`
1343 else
1344     newsuites=""
1345     workpath="${WORKSPACE}/test/csit/suites"
1346     for suite in ${SUITES}; do
1347         fullsuite="${workpath}/${suite}"
1348         if [ -z "${newsuites}" ]; then
1349             newsuites+=${fullsuite}
1350         else
1351             newsuites+=" "${fullsuite}
1352         fi
1353     done
1354     SUITES=${newsuites}
1355 fi
1356
1357 #install all client versions required for this job testing
1358 install_openstack_clients_in_robot_vm
1359
1360 # TODO: run openrc on control node and then scrape the vars from it
1361 # Environment Variables Needed to execute Openstack Client for NetVirt Jobs
1362 cat > /tmp/os_netvirt_client_rc << EOF
1363 export OS_USERNAME=admin
1364 export OS_PASSWORD=admin
1365 export OS_PROJECT_NAME=admin
1366 export OS_USER_DOMAIN_NAME=default
1367 export OS_PROJECT_DOMAIN_NAME=default
1368 export OS_AUTH_URL="http://${!CONTROLIP}/identity"
1369 export OS_IDENTITY_API_VERSION=3
1370 export OS_IMAGE_API_VERSION=2
1371 export OS_TENANT_NAME=admin
1372 unset OS_CLOUD
1373 EOF
1374
1375 source /tmp/os_netvirt_client_rc
1376
1377 echo "Get all versions before executing pybot"
1378 echo "openstack --version"
1379 which openstack
1380 openstack --version
1381 echo "nova --version"
1382 which nova
1383 nova --version
1384 echo "neutron --version"
1385 which neutron
1386 neutron --version
1387
1388 echo "Starting Robot test suites ${SUITES} ..."
1389 # please add pybot -v arguments on a single line and alphabetized
1390 suite_num=0
1391 for suite in ${SUITES}; do
1392     # prepend an incremental counter to the suite name so that the full robot log combining all the suites as is done
1393     # in the rebot step below will list all the suites in chronological order as rebot seems to alphabetize them
1394     let "suite_num = suite_num + 1"
1395     suite_index="$(printf %02d ${suite_num})"
1396     suite_name="$(basename ${suite} | cut -d. -f1)"
1397     log_name="${suite_index}_${suite_name}"
1398     pybot -N ${log_name} \
1399     -c critical -e exclude -e skip_if_${DISTROSTREAM} \
1400     --log log_${log_name}.html --report None --output output_${log_name}.xml \
1401     --removekeywords wuks \
1402     --removekeywords name:SetupUtils.Setup_Utils_For_Setup_And_Teardown \
1403     --removekeywords name:SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing \
1404     --removekeywords name:OpenStackOperations.Add_OVS_Logging_On_All_OpenStack_Nodes \
1405     -v BUNDLEFOLDER:${BUNDLEFOLDER} \
1406     -v BUNDLE_URL:${ACTUAL_BUNDLE_URL} \
1407     -v CONTROLLERFEATURES:"${CONTROLLERFEATURES}" \
1408     -v CONTROLLER_USER:${USER} \
1409     -v DEVSTACK_DEPLOY_PATH:/opt/stack/devstack \
1410     -v HA_PROXY_IP:${HA_PROXY_IP} \
1411     -v HA_PROXY_1_IP:${HA_PROXY_1_IP} \
1412     -v HA_PROXY_2_IP:${HA_PROXY_2_IP} \
1413     -v HA_PROXY_3_IP:${HA_PROXY_3_IP} \
1414     -v JDKVERSION:${JDKVERSION} \
1415     -v JENKINS_WORKSPACE:${WORKSPACE} \
1416     -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \
1417     -v NUM_ODL_SYSTEM:${NUM_ODL_SYSTEM} \
1418     -v NUM_OPENSTACK_SITES:${NUM_OPENSTACK_SITES} \
1419     -v NUM_OS_SYSTEM:${NUM_OPENSTACK_SYSTEM} \
1420     -v NUM_TOOLS_SYSTEM:${NUM_TOOLS_SYSTEM} \
1421     -v ODL_SNAT_MODE:${ODL_SNAT_MODE} \
1422     -v ODL_ENABLE_L3_FWD:${ODL_ENABLE_L3_FWD} \
1423     -v ODL_STREAM:${DISTROSTREAM} \
1424     -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} \
1425     -v ODL_SYSTEM_1_IP:${ODL_SYSTEM_1_IP} \
1426     -v ODL_SYSTEM_2_IP:${ODL_SYSTEM_2_IP} \
1427     -v ODL_SYSTEM_3_IP:${ODL_SYSTEM_3_IP} \
1428     -v ODL_SYSTEM_4_IP:${ODL_SYSTEM_4_IP} \
1429     -v ODL_SYSTEM_5_IP:${ODL_SYSTEM_5_IP} \
1430     -v ODL_SYSTEM_6_IP:${ODL_SYSTEM_6_IP} \
1431     -v ODL_SYSTEM_7_IP:${ODL_SYSTEM_7_IP} \
1432     -v ODL_SYSTEM_8_IP:${ODL_SYSTEM_8_IP} \
1433     -v ODL_SYSTEM_9_IP:${ODL_SYSTEM_9_IP} \
1434     -v OS_CONTROL_NODE_IP:${OPENSTACK_CONTROL_NODE_1_IP} \
1435     -v OS_CONTROL_NODE_1_IP:${OPENSTACK_CONTROL_NODE_1_IP} \
1436     -v OS_CONTROL_NODE_2_IP:${OPENSTACK_CONTROL_NODE_2_IP} \
1437     -v OS_CONTROL_NODE_3_IP:${OPENSTACK_CONTROL_NODE_3_IP} \
1438     -v OPENSTACK_BRANCH:${OPENSTACK_BRANCH} \
1439     -v OS_COMPUTE_1_IP:${OPENSTACK_COMPUTE_NODE_1_IP} \
1440     -v OS_COMPUTE_2_IP:${OPENSTACK_COMPUTE_NODE_2_IP} \
1441     -v OS_COMPUTE_3_IP:${OPENSTACK_COMPUTE_NODE_3_IP} \
1442     -v OS_COMPUTE_4_IP:${OPENSTACK_COMPUTE_NODE_4_IP} \
1443     -v OS_COMPUTE_5_IP:${OPENSTACK_COMPUTE_NODE_5_IP} \
1444     -v OS_COMPUTE_6_IP:${OPENSTACK_COMPUTE_NODE_6_IP} \
1445     -v OS_USER:${USER} \
1446     -v PUBLIC_PHYSICAL_NETWORK:${PUBLIC_PHYSICAL_NETWORK} \
1447     -v SECURITY_GROUP_MODE:${SECURITY_GROUP_MODE} \
1448     -v TOOLS_SYSTEM_IP:${TOOLS_SYSTEM_1_IP} \
1449     -v TOOLS_SYSTEM_1_IP:${TOOLS_SYSTEM_1_IP} \
1450     -v TOOLS_SYSTEM_2_IP:${TOOLS_SYSTEM_2_IP} \
1451     -v USER_HOME:${HOME} \
1452     -v WORKSPACE:/tmp \
1453     ${TESTOPTIONS} ${suite} || true
1454 done
1455 #rebot exit codes seem to be different
1456 rebot --output ${WORKSPACE}/output.xml --log log_full.html --report None -N openstack output_*.xml || true
1457
1458 echo "Examining the files in data/log and checking file size"
1459 ssh ${ODL_SYSTEM_IP} "ls -altr /tmp/${BUNDLEFOLDER}/data/log/"
1460 ssh ${ODL_SYSTEM_IP} "du -hs /tmp/${BUNDLEFOLDER}/data/log/*"
1461
1462 echo "Tests Executed"
1463 collect_logs
1464
1465 true  # perhaps Jenkins is testing last exit code
1466 # vim: ts=4 sw=4 sts=4 et ft=sh :