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