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