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