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