Merge "Updating cryptography to 2.9.0"
[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 # Ensure we fail the job if any steps fail.
9 set -ex -o pipefail
10 totaltmr=$(timer)
11 get_os_deploy
12
13 PYTHON="${ROBOT_VENV}/bin/python"
14 SSH="ssh -t -t"
15 ADMIN_PASSWORD="admin"
16 OPENSTACK_MASTER_CLIENTS_VERSION="queens"
17 #Size of the partition to /opt/stack in control and compute nodes
18 TMPFS_SIZE=2G
19 if [ "${ODL_ML2_BRANCH}" == "stable/rocky" ]; then
20             TMPFS_SIZE=12G
21 fi
22 # TODO: remove this work to run changes.py if/when it's moved higher up to be visible at the Robot level
23 printf "\nshowing recent changes that made it into the distribution used by this job:\n"
24 $PYTHON -m pip install --upgrade urllib3
25 python "${WORKSPACE}/test/tools/distchanges/changes.py" -d /tmp/distribution_folder \
26                   -u "${ACTUAL_BUNDLE_URL}" -b "${DISTROBRANCH}" \
27                   -r "ssh://jenkins-${SILO}@git.opendaylight.org:29418" || true
28
29 printf "\nshowing recent changes that made it into integration/test used by this job:\n"
30 (
31     cd "${WORKSPACE}/test"
32     printf "Hash    Author Date                    Commit Date                    Author               Subject\n"
33     printf "%s\n" "------- ------------------------------ ------------------------------ -------------------- -----------------------------"
34     git --no-pager log --pretty=format:'%h %<(30)%ad %<(30)%cd %<(20,trunc)%an%d %s' -n20
35     printf "\n"
36 )
37
38 cat << EOF
39 #################################################
40 ##         Deploy Openstack 3-node             ##
41 #################################################
42 EOF
43
44 # Catch command errors and collect logs.
45 # This ensures logs are collected when script commands fail rather than simply exiting.
46 function trap_handler() {
47     local prog="$0"
48     local lastline="$1"
49     local lasterr="$2"
50     echo "trap_handler: ${prog}: line ${lastline}: exit status of last command: ${lasterr}"
51     echo "trap_handler: command: ${BASH_COMMAND}"
52     exit 1
53 } # trap_handler()
54
55 trap 'trap_handler ${LINENO} ${$?}' ERR
56
57 print_job_parameters
58
59 function create_etc_hosts() {
60     NODE_IP=$1
61     CTRL_IP=$2
62     : > "${WORKSPACE}/hosts_file"
63     for iter in $(seq 1 "${NUM_OPENSTACK_COMPUTE_NODES}"); do
64         COMPUTE_IP=OPENSTACK_COMPUTE_NODE_${iter}_IP
65         if [ "${!COMPUTE_IP}" == "${NODE_IP}" ]; then
66            CONTROL_HNAME=$(${SSH}  "${CTRL_IP}"  "hostname")
67            echo "${CTRL_IP}   ${CONTROL_HNAME}" >> "${WORKSPACE}/hosts_file"
68         else
69            COMPUTE_HNAME=$(${SSH}  "${!COMPUTE_IP}"  "hostname")
70            echo "${!COMPUTE_IP}   ${COMPUTE_HNAME}" >> "${WORKSPACE}/hosts_file"
71         fi
72     done
73
74     echo "Created the hosts file for ${NODE_IP}:"
75     cat "${WORKSPACE}/hosts_file"
76 } # create_etc_hosts()
77
78 #function to install Openstack Clients for Testing
79 #This will pull the latest versions compatiable with the
80 # openstack release
81 function install_openstack_clients_in_robot_vm() {
82     packages=("python-novaclient" "python-neutronclient" "python-openstackclient")
83     local os_plugins
84     os_plugins=$(csv2ssv "${ENABLE_OS_PLUGINS}")
85     for plugin_name in $os_plugins; do
86         if [ "$plugin_name" == "networking-sfc" ]; then
87             packages+=("networking-sfc")
88         fi
89     done
90     openstack_version=$(echo "${OPENSTACK_BRANCH}" | cut -d/ -f2)
91     #If the job tests "master", we will use the clients from previous released stable version to avoid failures
92     if [ "${openstack_version}" == "master" ]; then
93        openstack_version=${OPENSTACK_MASTER_CLIENTS_VERSION}
94     fi
95     for package in ${packages[*]}; do
96        echo "Get the current support version of the package ${package}"
97        wget "https://raw.githubusercontent.com/openstack/requirements/stable/${openstack_version}/upper-constraints.txt" -O /tmp/constraints.txt 2>/dev/null
98        #python openstackclient version in rocky contradicts with version in global-jjb and stops openstackclient installation in rocky. Will be removed based on version change in global-jjb.
99        $PYTHON -m pip install setuptools===34.4.0
100        $PYTHON -m pip install python-openstackclient===3.16.3
101        sed -i s/osc-lib===1.11.1/osc-lib\>=2.0.0/ /tmp/constraints.txt
102        sed -i s/python-openstackclient===3.14.0/python-openstackclient===3.16.3/ /tmp/constraints.txt
103        sed -i s/keystoneauth1===3.10.1/keystoneauth1===3.18.0/ /tmp/constraints.txt
104        sed -i s/openstacksdk===0.17.3/openstacksdk===0.48.0/ /tmp/constraints.txt
105        sed -ie 's/os-service-types===.*/os-service-types===1.7.0/' /tmp/constraints.txt
106        sed -i s/stevedore===1.29.0/stevedore\>=3.0.0/ /tmp/constraints.txt
107        #Python uwsgi 2.0.19 is having errors, forcing it to pick 2.0.18
108        sed -i '1 auwsgi===2.0.18' /tmp/constraints.txt
109        #Python3 paramiko 2.7.1 has requirement cryptography>=2.5, Updating it to the latest
110        sed -ie 's/cryptography===.*/cryptography===2.9.2/' /tmp/constraints.txt
111        echo "$PYTHON -m pip install --upgrade --no-deps ${package} --no-cache-dir -c /tmp/constraints.txt"
112        $PYTHON -m pip install --upgrade --no-deps "${package}" --no-cache-dir -c /tmp/constraints.txt
113        echo "$PYTHON -m pip install ${package} --no-cache-dir -c /tmp/constraints.txt"
114        $PYTHON -m pip install "${package}" --no-cache-dir -c /tmp/constraints.txt
115     done
116
117     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
118         #alembic 1.4.2 is having issues. Updating the package with 1.4.0
119         $PYTHON -m pip install alembic===1.4.0
120         #networking-l2gw is not officially available in any release yet. Getting the latest stable version.
121         $PYTHON -m pip install networking-l2gw==11.0.0 more-itertools==5.0.0
122     fi
123 }
124
125 #Function to install rdo release
126 # This will help avoiding installing wrong version of packages which causes
127 # functionality failures
128 function install_rdo_release() {
129     local ip=$1
130     case ${OPENSTACK_BRANCH} in
131        *rocky*)
132           ${SSH} "${ip}" "sudo yum install -y https://repos.fedorapeople.org/repos/openstack/openstack-rocky/rdo-release-rocky-1.noarch.rpm"
133           ;;
134
135        *queens*)
136           ${SSH} "${ip}" "sudo yum install -y https://repos.fedorapeople.org/repos/openstack/openstack-queens/rdo-release-queens-1.noarch.rpm"
137           ;;
138
139        master)
140           ${SSH} "${ip}" "sudo yum install -y https://repos.fedorapeople.org/repos/openstack/openstack-rocky/rdo-release-rocky-1.noarch.rpm"
141           ;;
142     esac
143 }
144
145 # Involves just setting up the shared directory
146 function setup_live_migration_control() {
147     local control_ip=$1
148     printf "%s:Setup directory Share with NFS" "${control_ip}"
149     cat > "${WORKSPACE}/setup_live_migration_control.sh" << EOF
150 sudo mkdir --mode=777 /vm_instances
151 sudo chown -R jenkins:jenkins /vm_instances
152 sudo yum install -y nfs-utils
153 printf "/vm_instances *(rw,no_root_squash)" | sudo tee -a /etc/exports
154 sudo systemctl start rpcbind nfs-server
155 sudo exportfs
156 EOF
157     scp "${WORKSPACE}/setup_live_migration_control.sh" "${control_ip}:/tmp/setup_live_migration_control.sh"
158     ssh "${control_ip}" "bash /tmp/setup_live_migration_control.sh"
159 }
160
161 #Fix for broken requirements versions while bringing up the stack.
162 #Fix Problem caused due to new libvirt version in CentOS repo.
163 #The libvirt-python 3.10 does not support all the new API exposed
164 #This fix will force devstack to use latest libvirt-python
165 #from pypi.org (latest version as of 06-Dec-2018)
166 #Python uwsgi 2.0.19 is having errors, forcing it to pick 2.0.18
167 #more info: https://lists.opendaylight.org/g/app-dev/topic/netvirt_jobs_are_failing_with/74897077
168 function fix_broken_requirements_versions() {
169     local ip=$1
170     ${SSH} "${ip}" "
171         cd /opt/stack;
172         git clone https://git.openstack.org/openstack/requirements;
173         cd requirements;
174         git checkout ${ODL_ML2_BRANCH};
175         sed -i s/libvirt-python===3.10.0/libvirt-python===4.10.0/ upper-constraints.txt
176         sed -i '1 auwsgi===2.0.18' upper-constraints.txt
177         "
178 }
179
180 # Involves mounting the share and configuring the libvirtd
181 function setup_live_migration_compute() {
182     local compute_ip=$1
183     local control_ip=$2
184     printf "%s:Mount Shared directory from ${control_ip}" "${compute_ip}"
185     printf "%s:Configure libvirt in listen mode" "${compute_ip}"
186     cat > "${WORKSPACE}/setup_live_migration_compute.sh" << EOF
187 sudo yum install -y libvirt libvirt-devel nfs-utils
188 sudo crudini --verbose  --set --inplace /etc/libvirt/libvirtd.conf '' listen_tls 0
189 sudo crudini --verbose  --set --inplace /etc/libvirt/libvirtd.conf '' listen_tcp 1
190 sudo crudini --verbose  --set --inplace /etc/libvirt/libvirtd.conf '' auth_tcp '"none"'
191 sudo crudini --verbose  --set --inplace /etc/sysconfig/libvirtd '' LIBVIRTD_ARGS '"--listen"'
192 sudo mkdir --mode=777 -p /var/instances
193 sudo chown -R jenkins:jenkins /var/instances
194 sudo chmod o+x /var/instances
195 sudo systemctl start rpcbind
196 sudo mount -t nfs ${control_ip}:/vm_instances /var/instances
197 sudo mount
198 EOF
199     scp "${WORKSPACE}/setup_live_migration_compute.sh" "${compute_ip}:/tmp/setup_live_migration_compute.sh"
200     ssh "${compute_ip}" "bash /tmp/setup_live_migration_compute.sh"
201 }
202
203 # Add enable_services and disable_services to the local.conf
204 function add_os_services() {
205     local core_services=$1
206     local enable_services=$2
207     local disable_services=$3
208     local local_conf_file_name=$4
209     local enable_network_services=$5
210
211     cat >> "${local_conf_file_name}" << EOF
212 enable_service $(csv2ssv "${core_services}")
213 EOF
214     if [ -n "${enable_services}" ]; then
215         cat >> "${local_conf_file_name}" << EOF
216 enable_service $(csv2ssv "${enable_services}")
217 EOF
218     fi
219     if [ -n "${disable_services}" ]; then
220         cat >> "${local_conf_file_name}" << EOF
221 disable_service $(csv2ssv "${disable_services}")
222 EOF
223     fi
224     if [ -n "${enable_network_services}" ]; then
225         cat >> "${local_conf_file_name}" << EOF
226 enable_service $(csv2ssv "${enable_network_services}")
227 EOF
228     fi
229 }
230
231 function create_control_node_local_conf() {
232     HOSTIP=$1
233     MGRIP=$2
234     ODL_OVS_MANAGERS="$3"
235
236     local_conf_file_name=${WORKSPACE}/local.conf_control_${HOSTIP}
237     cat > "${local_conf_file_name}" << EOF
238 [[local|localrc]]
239 LOGFILE=stack.sh.log
240 LOG_COLOR=False
241 USE_SYSTEMD=True
242 RECLONE=${RECLONE}
243 # Increase the wait used by stack to poll for services
244 SERVICE_TIMEOUT=120
245
246 disable_all_services
247 EOF
248
249     add_os_services "${CORE_OS_CONTROL_SERVICES}" "${ENABLE_OS_SERVICES}" "${DISABLE_OS_SERVICES}" "${local_conf_file_name}" "${ENABLE_OS_NETWORK_SERVICES}"
250
251     cat >> "${local_conf_file_name}" << EOF
252
253 HOST_IP=${HOSTIP}
254 SERVICE_HOST=\$HOST_IP
255 Q_ML2_TENANT_NETWORK_TYPE=${TENANT_NETWORK_TYPE}
256 NEUTRON_CREATE_INITIAL_NETWORKS=${CREATE_INITIAL_NETWORKS}
257
258 ODL_MODE=manual
259 ODL_MGR_IP=${MGRIP}
260 ODL_PORT=${ODL_PORT}
261 ODL_PORT_BINDING_CONTROLLER=${ODL_ML2_PORT_BINDING}
262 ODL_OVS_MANAGERS=${ODL_OVS_MANAGERS}
263
264 MYSQL_HOST=\$SERVICE_HOST
265 RABBIT_HOST=\$SERVICE_HOST
266 GLANCE_HOSTPORT=\$SERVICE_HOST:9292
267 KEYSTONE_AUTH_HOST=\$SERVICE_HOST
268 KEYSTONE_SERVICE_HOST=\$SERVICE_HOST
269
270 ADMIN_PASSWORD=${ADMIN_PASSWORD}
271 DATABASE_PASSWORD=${ADMIN_PASSWORD}
272 RABBIT_PASSWORD=${ADMIN_PASSWORD}
273 SERVICE_TOKEN=${ADMIN_PASSWORD}
274 SERVICE_PASSWORD=${ADMIN_PASSWORD}
275
276 NEUTRON_LBAAS_SERVICE_PROVIDERV2=${LBAAS_SERVICE_PROVIDER} # Only relevant if neutron-lbaas plugin is enabled
277 NEUTRON_SFC_DRIVERS=${ODL_SFC_DRIVER} # Only relevant if networking-sfc plugin is enabled
278 NEUTRON_FLOWCLASSIFIER_DRIVERS=${ODL_SFC_DRIVER} # Only relevant if networking-sfc plugin is enabled
279 ETCD_PORT=2379
280 PUBLIC_BRIDGE=${PUBLIC_BRIDGE}
281 PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK}
282 ML2_VLAN_RANGES=${PUBLIC_PHYSICAL_NETWORK}
283 ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS}
284 EOF
285     if [ "${TENANT_NETWORK_TYPE}" == "local" ]; then
286         cat >> "${local_conf_file_name}" << EOF
287 ENABLE_TENANT_TUNNELS=false
288 EOF
289     fi
290
291     if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then
292         echo "ODL_V2DRIVER=True" >> "${local_conf_file_name}"
293     fi
294     IFS=,
295     for plugin_name in ${ENABLE_OS_PLUGINS}; do
296         if [ "$plugin_name" == "networking-odl" ]; then
297             ENABLE_PLUGIN_ARGS="${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH}"
298         elif [ "$plugin_name" == "kuryr-kubernetes" ]; then
299             ENABLE_PLUGIN_ARGS="${DEVSTACK_KUBERNETES_PLUGIN_REPO} master" # note: kuryr-kubernetes only exists in master at the moment
300         elif [ "$plugin_name" == "neutron-lbaas" ]; then
301             ENABLE_PLUGIN_ARGS="${DEVSTACK_LBAAS_PLUGIN_REPO} ${OPENSTACK_BRANCH}"
302             IS_LBAAS_PLUGIN_ENABLED="yes"
303         elif [ "$plugin_name" == "networking-sfc" ]; then
304             ENABLE_PLUGIN_ARGS="${DEVSTACK_NETWORKING_SFC_PLUGIN_REPO} ${OPENSTACK_BRANCH}"
305             IS_SFC_PLUGIN_ENABLED="yes"
306         else
307             echo "Error: Invalid plugin $plugin_name, unsupported"
308             continue
309         fi
310         cat >> "${local_conf_file_name}" << EOF
311
312 enable_plugin ${plugin_name} ${ENABLE_PLUGIN_ARGS}
313 EOF
314     done
315     unset IFS
316
317     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
318         cat >> "${local_conf_file_name}" << EOF
319
320 enable_plugin networking-l2gw ${NETWORKING_L2GW_DRIVER} ${ODL_ML2_BRANCH}
321 NETWORKING_L2GW_SERVICE_DRIVER=L2GW:OpenDaylight:networking_odl.l2gateway.driver_v2.OpenDaylightL2gwDriver:default
322 EOF
323     fi
324
325     if [ "${ODL_ML2_DRIVER_VERSION}" == "v2" ]; then
326        SERVICE_PLUGINS="odl-router_v2"
327     else
328        SERVICE_PLUGINS="odl-router"
329     fi
330     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
331         SERVICE_PLUGINS+=", networking_l2gw.services.l2gateway.plugin.L2GatewayPlugin"
332     fi
333     if [ "${IS_LBAAS_PLUGIN_ENABLED}" == "yes" ]; then
334         SERVICE_PLUGINS+=", lbaasv2"
335     fi
336     if [ "${IS_SFC_PLUGIN_ENABLED}" == "yes" ]; then
337         SERVICE_PLUGINS+=", networking_sfc.services.flowclassifier.plugin.FlowClassifierPlugin,networking_sfc.services.sfc.plugin.SfcPlugin"
338     fi
339
340     cat >> "${local_conf_file_name}" << EOF
341
342 [[post-config|\$NEUTRON_CONF]]
343 [DEFAULT]
344 service_plugins = ${SERVICE_PLUGINS}
345 log_dir = /opt/stack/logs
346
347 [[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
348 [agent]
349 minimize_polling=True
350
351 [ml2]
352 # Needed for VLAN provider tests - because our provider networks are always encapsulated in VXLAN (br-physnet1)
353 # MTU(1400) + VXLAN(50) + VLAN(4) = 1454 < MTU eth0/br-physnet1(1458)
354 physical_network_mtus = ${PUBLIC_PHYSICAL_NETWORK}:1400
355 path_mtu = 1458
356 EOF
357     if [ "${ENABLE_GRE_TYPE_DRIVERS}" == "yes" ]; then
358         cat >> "${local_conf_file_name}" << EOF
359 type_drivers = local,flat,vlan,gre,vxlan
360 [ml2_type_gre]
361 tunnel_id_ranges = 1:1000
362 EOF
363     fi
364     if [ "${ENABLE_NETWORKING_L2GW}" == "yes" ]; then
365         cat >> "${local_conf_file_name}" << EOF
366
367 [ml2_odl]
368 enable_dhcp_service = True
369 EOF
370     fi
371
372     cat >> "${local_conf_file_name}" << EOF
373
374 [ml2_odl]
375 # Trigger n-odl full sync every 30 secs.
376 maintenance_interval = 30
377
378 [[post-config|/etc/neutron/dhcp_agent.ini]]
379 [DEFAULT]
380 force_metadata = True
381 enable_isolated_metadata = True
382 log_dir = /opt/stack/logs
383
384 [[post-config|/etc/nova/nova.conf]]
385 [scheduler]
386 discover_hosts_in_cells_interval = 30
387
388 [DEFAULT]
389 force_config_drive = False
390 force_raw_images = False
391 log_dir = /opt/stack/logs
392
393 EOF
394
395     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
396         cat >> "${local_conf_file_name}" << EOF
397 use_neutron = True
398 force_raw_images = False
399 log_dir = /opt/stack/logs
400 [libvirt]
401 live_migration_uri = qemu+tcp://%s/system
402 virt_type = qemu
403 EOF
404     fi
405
406     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
407         echo "Combo local.conf created:"
408     else
409         echo "Control local.conf created:"
410     fi
411     cat "${local_conf_file_name}"
412 } # create_control_node_local_conf()
413
414 function create_compute_node_local_conf() {
415     HOSTIP=$1
416     SERVICEHOST=$2
417     MGRIP=$3
418     ODL_OVS_MANAGERS="$4"
419
420     local_conf_file_name=${WORKSPACE}/local.conf_compute_${HOSTIP}
421     cat > "${local_conf_file_name}" << EOF
422 [[local|localrc]]
423 LOGFILE=stack.sh.log
424 LOG_COLOR=False
425 USE_SYSTEMD=True
426 RECLONE=${RECLONE}
427 # Increase the wait used by stack to poll for the nova service on the control node
428 NOVA_READY_TIMEOUT=1800
429
430 disable_all_services
431 EOF
432
433     add_os_services "${CORE_OS_COMPUTE_SERVICES}" "${ENABLE_OS_COMPUTE_SERVICES}" "${DISABLE_OS_SERVICES}" "${local_conf_file_name}"
434
435     cat >> "${local_conf_file_name}" << EOF
436 HOST_IP=${HOSTIP}
437 SERVICE_HOST=${SERVICEHOST}
438 Q_ML2_TENANT_NETWORK_TYPE=${TENANT_NETWORK_TYPE}
439
440 ODL_MODE=manual
441 ODL_MGR_IP=${MGRIP}
442 ODL_PORT=${ODL_PORT}
443 ODL_PORT_BINDING_CONTROLLER=${ODL_ML2_PORT_BINDING}
444 ODL_OVS_MANAGERS=${ODL_OVS_MANAGERS}
445
446 Q_HOST=\$SERVICE_HOST
447 MYSQL_HOST=\$SERVICE_HOST
448 RABBIT_HOST=\$SERVICE_HOST
449 GLANCE_HOSTPORT=\$SERVICE_HOST:9292
450 KEYSTONE_AUTH_HOST=\$SERVICE_HOST
451 KEYSTONE_SERVICE_HOST=\$SERVICE_HOST
452
453 ADMIN_PASSWORD=${ADMIN_PASSWORD}
454 DATABASE_PASSWORD=${ADMIN_PASSWORD}
455 RABBIT_PASSWORD=${ADMIN_PASSWORD}
456 SERVICE_TOKEN=${ADMIN_PASSWORD}
457 SERVICE_PASSWORD=${ADMIN_PASSWORD}
458
459 PUBLIC_BRIDGE=${PUBLIC_BRIDGE}
460 PUBLIC_PHYSICAL_NETWORK=${PUBLIC_PHYSICAL_NETWORK}
461 ODL_PROVIDER_MAPPINGS=${ODL_PROVIDER_MAPPINGS}
462 EOF
463
464     if [[ "${ENABLE_OS_PLUGINS}" =~ networking-odl ]]; then
465         cat >> "${local_conf_file_name}" << EOF
466
467 enable_plugin networking-odl ${ODL_ML2_DRIVER_REPO} ${ODL_ML2_BRANCH}
468 EOF
469     fi
470
471     cat >> "${local_conf_file_name}" << EOF
472
473 [[post-config|/etc/nova/nova.conf]]
474 [api]
475 auth_strategy = keystone
476 [DEFAULT]
477 use_neutron = True
478 force_raw_images = False
479 log_dir = /opt/stack/logs
480 [libvirt]
481 live_migration_uri = qemu+tcp://%s/system
482 virt_type = qemu
483 EOF
484
485     echo "Compute local.conf created:"
486     cat "${local_conf_file_name}"
487 } # create_compute_node_local_conf()
488
489 function configure_haproxy_for_neutron_requests() {
490     local -r haproxy_ip=$1
491     # shellcheck disable=SC2206
492     local -r odl_ips=(${2//,/ })
493
494     cat > "${WORKSPACE}/install_ha_proxy.sh" << EOF
495 sudo systemctl stop firewalld
496 sudo yum -y install policycoreutils-python haproxy
497 EOF
498
499     cat > "${WORKSPACE}/haproxy.cfg" << EOF
500 global
501   daemon
502   group  haproxy
503   log  /dev/log local0 debug
504   maxconn  20480
505   pidfile  /tmp/haproxy.pid
506   ssl-default-bind-ciphers  !SSLv2:kEECDH:kRSA:kEDH:kPSK:+3DES:!aNULL:!eNULL:!MD5:!EXP:!RC4:!SEED:!IDEA:!DES
507   ssl-default-bind-options  no-sslv3 no-tlsv10
508   stats  socket /var/lib/haproxy/stats mode 600 level user
509   stats  timeout 2m
510   user  haproxy
511
512 defaults
513   log  global
514   option  log-health-checks
515   maxconn  4096
516   mode  tcp
517   retries  3
518   timeout  http-request 10s
519   timeout  queue 2m
520   timeout  connect 5s
521   timeout  client 5s
522   timeout  server 5s
523
524 listen opendaylight
525   bind ${haproxy_ip}:8181 transparent
526   mode http
527   http-request set-header X-Forwarded-Proto https if { ssl_fc }
528   http-request set-header X-Forwarded-Proto http if !{ ssl_fc }
529   option httpchk GET /diagstatus
530   option httplog
531 EOF
532
533     odlindex=1
534     for odlip in ${odl_ips[*]}; do
535         echo "  server opendaylight-rest-${odlindex} ${odlip}:8181 check fall 5 inter 2000 rise 2" >> "${WORKSPACE}/haproxy.cfg"
536         odlindex=$((odlindex+1))
537     done
538
539     cat >> "${WORKSPACE}/haproxy.cfg" << EOF
540
541 listen opendaylight_ws
542   bind ${haproxy_ip}:8185 transparent
543   mode http
544   timeout tunnel 3600s
545   option httpchk GET /data-change-event-subscription/neutron:neutron/neutron:ports/datastore=OPERATIONAL/scope=SUBTREE HTTP/1.1\r\nHost:\ ws.opendaylight.org\r\nConnection:\ Upgrade\r\nUpgrade:\ websocket\r\nSec-WebSocket-Key:\ haproxy\r\nSec-WebSocket-Version:\ 13\r\nSec-WebSocket-Protocol:\ echo-protocol
546   http-check expect status 101
547 EOF
548
549     odlindex=1
550     for odlip in ${odl_ips[*]}; do
551         echo "  server opendaylight-ws-${odlindex} ${odlip}:8185 check fall 3 inter 1000 rise 2" >> "${WORKSPACE}/haproxy.cfg"
552         odlindex=$((odlindex+1))
553     done
554
555     echo "Dump haproxy.cfg"
556     cat "${WORKSPACE}/haproxy.cfg"
557
558     cat > "${WORKSPACE}/deploy_ha_proxy.sh" << EOF
559 sudo chown haproxy:haproxy /tmp/haproxy.cfg
560 sudo sed -i 's/\\/etc\\/haproxy\\/haproxy.cfg/\\/tmp\\/haproxy.cfg/g' /usr/lib/systemd/system/haproxy.service
561 sudo /usr/sbin/semanage permissive -a haproxy_t
562 sudo systemctl restart haproxy
563 sleep 3
564 sudo netstat -tunpl
565 sudo systemctl status haproxy
566 true
567 EOF
568
569     scp "${WORKSPACE}/install_ha_proxy.sh" "${haproxy_ip}:/tmp"
570     ${SSH} "${haproxy_ip}" "sudo bash /tmp/install_ha_proxy.sh"
571     scp "${WORKSPACE}/haproxy.cfg" "${haproxy_ip}:/tmp"
572     scp "${WORKSPACE}/deploy_ha_proxy.sh" "${haproxy_ip}:/tmp"
573     ${SSH} "${haproxy_ip}" "sudo bash /tmp/deploy_ha_proxy.sh"
574 } # configure_haproxy_for_neutron_requests()
575
576 # Following three functions are debugging helpers when debugging devstack changes.
577 # Keeping them for now so we can simply call them when needed.
578 ctrlhn=""
579 comp1hn=""
580 comp2hn=""
581 function get_hostnames () {
582     set +e
583     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
584     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
585     local comp2ip=${OPENSTACK_COMPUTE_NODE_2_IP}
586     ctrlhn=$(${SSH} "${ctrlip}" "hostname")
587     comp1hn=$(${SSH} "${comp1ip}" "hostname")
588     comp2hn=$(${SSH} "${comp2ip}" "hostname")
589     echo "hostnames: ${ctrlhn}, ${comp1hn}, ${comp2hn}"
590     set -e
591 }
592
593 function check_firewall() {
594     set +e
595     echo $-
596     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
597     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
598     local comp2ip=${OPENSTACK_COMPUTE_NODE_2_IP}
599
600     echo "check_firewall on control"
601     ${SSH} "${ctrlip}" "
602         sudo systemctl status firewalld
603         sudo systemctl -l status iptables
604         sudo iptables --line-numbers -nvL
605     " || true
606     echo "check_firewall on compute 1"
607     ${SSH} "${comp1ip}" "
608         sudo systemctl status firewalld
609         sudo systemctl -l status iptables
610         sudo iptables --line-numbers -nvL
611     " || true
612     echo "check_firewall on compute 2"
613     ${SSH} "${comp2ip}" "
614         sudo systemctl status firewalld
615         sudo systemctl -l status iptables
616         sudo iptables --line-numbers -nvL
617     " || true
618 }
619
620 function get_service () {
621     set +e
622     local iter=$1
623     #local idx=$2
624     local ctrlip=${OPENSTACK_CONTROL_NODE_1_IP}
625     local comp1ip=${OPENSTACK_COMPUTE_NODE_1_IP}
626
627     #if [ ${idx} -eq 1 ]; then
628         if [ "${iter}" -eq 1 ] || [ "${iter}" -gt 16 ]; then
629             curl "http://${ctrlip}:5000"
630             curl "http://${ctrlip}:35357"
631             curl "http://${ctrlip}/identity"
632             ${SSH} "${ctrlip}" "
633                 source /opt/stack/devstack/openrc admin admin;
634                 env
635                 openstack configuration show --unmask;
636                 openstack service list
637                 openstack --os-cloud devstack-admin --os-region RegionOne compute service list
638                 openstack hypervisor list;
639             " || true
640             check_firewall
641         fi
642     #fi
643     set -e
644 }
645
646 # Check if rabbitmq is ready by looking for a pid in it's status.
647 # The function returns the status of the grep command which callers can check.
648 function is_rabbitmq_ready() {
649     local -r ip=${1}
650     local grepfor="nova_cell1"
651     rm -f rabbit.txt
652     ${SSH} "${ip}" "sudo rabbitmqctl list_vhosts" > rabbit.txt
653     grep "${grepfor}" rabbit.txt
654 }
655
656 # retry the given command ($3) until success for a number of iterations ($1)
657 # sleeping ($2) between tries.
658 function retry() {
659     local -r -i max_tries=${1}
660     local -r -i sleep_time=${2}
661     local -r cmd=${3}
662     local -i retries=1
663     local -i rc=1
664     while true; do
665         echo "retry ${cmd}: attempt: ${retries}"
666         ${cmd}
667         rc=$?
668         # shellcheck disable=SC2004
669         if ((${rc} == 0)); then
670             break;
671         else
672             # shellcheck disable=SC2004
673             if ((${retries} == ${max_tries})); then
674                 break
675             else
676                 ((retries++))
677                 sleep "${sleep_time}"
678             fi
679         fi
680     done
681     return ${rc}
682 }
683
684 function install_ovs() {
685     local -r node=${1}
686     local -r rpm_path=${2}
687
688     if [ "${OVS_INSTALL:0:1}" = "v" ]; then
689        # An OVS version was given, so we build it ourselves from OVS git repo.
690        # Only on the first node though, consecutive nodes will use RPMs
691        # built for the first one.
692        [ ! -d "${rpm_path}" ] && mkdir -p "${rpm_path}" && build_ovs "${node}" "${OVS_INSTALL}" "${rpm_path}"
693        # Install OVS from path
694        install_ovs_from_path "${node}" "${rpm_path}"
695     elif [ "${OVS_INSTALL:0:4}" = "http" ]; then
696        # Otherwise, install from rpm repo directly.
697        install_ovs_from_repo "${node}" "${OVS_INSTALL}"
698     else
699        echo "Expected either an OVS version git tag or a repo http url"
700        exit 1
701     fi
702 }
703
704 ODL_PROVIDER_MAPPINGS="\${PUBLIC_PHYSICAL_NETWORK}:${PUBLIC_BRIDGE}"
705 RECLONE=False
706 ODL_PORT=8181
707
708 # Always compare the lists below against the devstack upstream ENABLED_SERVICES in
709 # https://github.com/openstack-dev/devstack/blob/master/stackrc#L52
710 # ODL CSIT does not use vnc, cinder, q-agt, q-l3 or horizon so they are not included below.
711 # collect performance stats
712 CORE_OS_CONTROL_SERVICES="dstat"
713 # Glance
714 CORE_OS_CONTROL_SERVICES+=",g-api,g-reg"
715 # Keystone
716 CORE_OS_CONTROL_SERVICES+=",key"
717 # Nova - services to support libvirt
718 CORE_OS_CONTROL_SERVICES+=",n-api,n-api-meta,n-cauth,n-cond,n-crt,n-obj,n-sch"
719 # ODL - services to connect to ODL
720 CORE_OS_CONTROL_SERVICES+=",odl-compute,odl-neutron"
721 # Additional services
722 CORE_OS_CONTROL_SERVICES+=",mysql,rabbit"
723
724 # collect performance stats
725 CORE_OS_COMPUTE_SERVICES="dstat"
726 # computes only need nova and odl
727 CORE_OS_COMPUTE_SERVICES+=",n-cpu,odl-compute"
728
729 cat > "${WORKSPACE}/disable_firewall.sh" << EOF
730 sudo systemctl stop firewalld
731 # Open these ports to match the tutorial vms
732 # http/https (80/443), samba (445), netbios (137,138,139)
733 sudo iptables -I INPUT -p tcp -m multiport --dports 80,443,139,445 -j ACCEPT
734 sudo iptables -I INPUT -p udp -m multiport --dports 137,138 -j ACCEPT
735 # OpenStack services as well as vxlan tunnel ports 4789 and 9876
736 # identity public/admin (5000/35357), ampq (5672), vnc (6080), nova (8774), glance (9292), neutron (9696)
737 sudo sudo iptables -I INPUT -p tcp -m multiport --dports 5000,5672,6080,8774,9292,9696,35357 -j ACCEPT
738 sudo sudo iptables -I INPUT -p udp -m multiport --dports 4789,9876 -j ACCEPT
739 sudo iptables-save > /etc/sysconfig/iptables
740 sudo systemctl restart iptables
741 sudo iptables --line-numbers -nvL
742 true
743 EOF
744
745 #For SFC Tests a larger partition is required for creating instances with Ubuntu
746 if [[ "${ENABLE_OS_PLUGINS}" =~ networking-sfc ]]; then
747    TMPFS_SIZE=12G
748 fi
749 cat > "${WORKSPACE}/get_devstack.sh" << EOF
750 sudo systemctl stop firewalld
751 sudo yum install bridge-utils python-pip -y
752 #sudo systemctl stop  NetworkManager
753 #Disable NetworkManager and kill dhclient and dnsmasq
754 sudo systemctl stop NetworkManager
755 sudo killall dhclient
756 sudo killall dnsmasq
757 #Workaround for mysql failure
758 echo "127.0.0.1   localhost \${HOSTNAME}" >> /tmp/hosts
759 echo "::1         localhost \${HOSTNAME}" >> /tmp/hosts
760 sudo mv /tmp/hosts /etc/hosts
761 sudo mkdir /opt/stack
762 echo "Create RAM disk for /opt/stack"
763 sudo mount -t tmpfs -o size=${TMPFS_SIZE} tmpfs /opt/stack
764 sudo chmod 777 /opt/stack
765 cd /opt/stack
766 echo "git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}"
767 git clone https://git.openstack.org/openstack-dev/devstack --branch ${OPENSTACK_BRANCH}
768 cd devstack
769 if [ -n "${DEVSTACK_HASH}" ]; then
770     echo "git checkout ${DEVSTACK_HASH}"
771     git checkout ${DEVSTACK_HASH}
772 fi
773 wget https://raw.githubusercontent.com/shague/odl_tools/master/fix-logging.patch.txt -O /tmp/fix-logging.patch.txt
774 patch --verbose -p1 -i /tmp/fix-logging.patch.txt
775 git --no-pager log --pretty=format:'%h %<(13)%ar%<(13)%cr %<(20,trunc)%an%d %s%b' -n20
776 echo
777
778 echo "workaround: do not upgrade openvswitch"
779 sudo yum install -y yum-plugin-versionlock
780 sudo yum versionlock add openvswitch
781 EOF
782
783 cat > "${WORKSPACE}/setup_host_cell_mapping.sh" << EOF
784 sudo nova-manage cell_v2 map_cell0
785 sudo nova-manage cell_v2 simple_cell_setup
786 sudo nova-manage db sync
787 sudo nova-manage cell_v2 discover_hosts
788 EOF
789
790 cat > "${WORKSPACE}/workaround_networking_sfc.sh" << EOF
791 cd /opt/stack
792 git clone https://git.openstack.org/openstack/networking-sfc
793 cd networking-sfc
794 git checkout ${OPENSTACK_BRANCH}
795 git checkout master -- devstack/plugin.sh
796 EOF
797
798 NUM_OPENSTACK_SITES=${NUM_OPENSTACK_SITES:-1}
799 compute_index=1
800 os_node_list=()
801
802 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
803     echo "Configure HAProxy"
804     ODL_HAPROXYIP_PARAM=OPENSTACK_HAPROXY_1_IP
805     ODL_IP_PARAM1=ODL_SYSTEM_1_IP
806     ODL_IP_PARAM2=ODL_SYSTEM_2_IP
807     ODL_IP_PARAM3=ODL_SYSTEM_3_IP
808     ODLMGRIP=${!ODL_HAPROXYIP_PARAM} # ODL Northbound uses HAProxy VIP
809     ODL_OVS_MGRS="${!ODL_IP_PARAM1},${!ODL_IP_PARAM2},${!ODL_IP_PARAM3}" # OVSDB connects to all ODL IPs
810     configure_haproxy_for_neutron_requests ${!ODL_HAPROXYIP_PARAM} "${ODL_OVS_MGRS}"
811 else
812     ODL_IP_PARAM=ODL_SYSTEM_1_IP
813     ODLMGRIP=${!ODL_IP_PARAM} # OVSDB connects to ODL IP
814     ODL_OVS_MGRS="${!ODL_IP_PARAM}" # ODL Northbound uses ODL IP
815 fi
816
817 os_ip_list=()
818 for i in $(seq 1 "${NUM_OPENSTACK_CONTROL_NODES}"); do
819     cip=OPENSTACK_CONTROL_NODE_${i}_IP
820     ip=${!cip}
821     os_ip_list+=("${ip}")
822 done
823
824 for i in $(seq 1 "${NUM_OPENSTACK_COMPUTE_NODES}"); do
825     cip=OPENSTACK_COMPUTE_NODE_${i}_IP
826     ip=${!cip}
827     os_ip_list+=("${ip}")
828 done
829
830 for i in "${!os_ip_list[@]}"; do
831     ip=${os_ip_list[i]}
832     tcpdump_start "${i}" "${ip}" "port 6653"
833 done
834
835
836 # Begin stacking the nodes, starting with the controller(s) and then the compute(s)
837
838 for i in $(seq 1 "${NUM_OPENSTACK_CONTROL_NODES}"); do
839     CONTROLIP="OPENSTACK_CONTROL_NODE_${i}_IP"
840     echo "Configure the stack of the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${!CONTROLIP}"
841     scp "${WORKSPACE}/disable_firewall.sh" "${!CONTROLIP}":/tmp
842     ${SSH} "${!CONTROLIP}" "sudo bash /tmp/disable_firewall.sh"
843     create_etc_hosts "${!CONTROLIP}"
844     scp "${WORKSPACE}/hosts_file" "${!CONTROLIP}":/tmp/hosts
845     scp "${WORKSPACE}/get_devstack.sh" "${!CONTROLIP}":/tmp
846     # devstack Master is yet to migrate fully to lib/neutron, there are some ugly hacks that is
847     # affecting the stacking.
848     # Workaround For Queens, Make the physical Network as physnet1 in lib/neutron
849     # In Queens the neutron new libs are used and do not have the following options from Pike and earlier:
850     # Q_ML2_PLUGIN_FLAT_TYPE_OPTIONS could be used for the flat_networks
851     # and Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS could be used for the ml2_type_vlan
852     ${SSH} "${!CONTROLIP}" "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
853     ssh "${!CONTROLIP}" "sed -i 's/flat_networks public/flat_networks public,physnet1/' /opt/stack/devstack/lib/neutron"
854     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"
855     #Workaround for networking-sfc to configure the paramaters in neutron.conf if the
856     # services used are neutron-api, neutron-dhcp etc instead of q-agt.
857     # Can be removed if the patch https://review.openstack.org/#/c/596287/ gets merged
858     if [[ "${ENABLE_OS_PLUGINS}" =~ networking-sfc ]]; then
859        scp "${WORKSPACE}/workaround_networking_sfc.sh" "${!CONTROLIP}":/tmp/
860        ssh "${!CONTROLIP}" "bash -x /tmp/workaround_networking_sfc.sh"
861     fi
862     create_control_node_local_conf "${!CONTROLIP}" ${ODLMGRIP} "${ODL_OVS_MGRS}"
863     scp "${WORKSPACE}/local.conf_control_${!CONTROLIP}" "${!CONTROLIP}":/opt/stack/devstack/local.conf
864     echo "Install rdo release to avoid incompatible Package versions"
865     install_rdo_release "${!CONTROLIP}"
866     setup_live_migration_control "${!CONTROLIP}"
867     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
868         setup_live_migration_compute "${!CONTROLIP}" "${!CONTROLIP}"
869     fi
870     [ -n "${OVS_INSTALL}" ] && install_ovs "${!CONTROLIP}" /tmp/ovs_rpms
871     if [[ "${ENABLE_OS_PLUGINS}" =~ networking-sfc ]]; then
872         # This should be really done by networking-odl devstack plugin,
873         # but in the meantime do it ourselves
874         ssh "${!CONTROLIP}" "sudo ovs-vsctl set Open_vSwitch . external_ids:of-tunnel=true"
875     fi
876     fix_broken_requirements_versions "${!CONTROLIP}"
877     echo "Stack the control node ${i} of ${NUM_OPENSTACK_CONTROL_NODES}: ${CONTROLIP}"
878     # Workaround: fixing boneheaded polkit issue, to be removed later
879     ssh "${!CONTROLIP}" "sudo bash -c 'echo deltarpm=0 >> /etc/yum.conf && yum -y update polkit'"
880     ssh "${!CONTROLIP}" "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
881     ssh "${!CONTROLIP}" "ps -ef | grep stack.sh"
882     ssh "${!CONTROLIP}" "ls -lrt /opt/stack/devstack/nohup.out"
883     os_node_list+=("${!CONTROLIP}")
884 done
885
886 # This is a backup to the CELLSV2_SETUP=singleconductor workaround. Keeping it here as an easy lookup
887 # if needed.
888 # Let the control node get started to avoid a race condition where the computes start and try to access
889 # the nova_cell1 on the control node before it is created. If that happens, the nova-compute service on the
890 # compute exits and does not attempt to restart.
891 # 180s is chosen because in test runs the control node usually finished in 17-20 minutes and the computes finished
892 # in 17 minutes, so take the max difference of 3 minutes and the jobs should still finish around the same time.
893 # one of the following errors is seen in the compute n-cpu.log:
894 # Unhandled error: NotAllowed: Connection.open: (530) NOT_ALLOWED - access to vhost 'nova_cell1' refused for user 'stackrabbit'
895 # AccessRefused: (0, 0): (403) ACCESS_REFUSED - Login was refused using authentication mechanism AMQPLAIN. For details see the broker logfile.
896 # Compare that timestamp to this log in the control stack.log: sudo rabbitmqctl set_permissions -p nova_cell1 stackrabbit
897 # If the n-cpu.log is earlier than the control stack.log timestamp then the failure condition is likely hit.
898 if [ "${NUM_OPENSTACK_COMPUTE_NODES}" -gt 0 ]; then
899     WAIT_FOR_RABBITMQ_MINUTES=60
900     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"
901     set +e
902     retry ${WAIT_FOR_RABBITMQ_MINUTES} 60 "is_rabbitmq_ready ${OPENSTACK_CONTROL_NODE_1_IP}"
903     rc=$?
904     set -e
905     # shellcheck disable=SC2004
906     if ((${rc} == 0)); then
907       echo "rabbitmq is ready, starting ${NUM_OPENSTACK_COMPUTE_NODES} compute(s)"
908     else
909       echo "rabbitmq was not ready in ${WAIT_FOR_RABBITMQ_MINUTES}m"
910       exit 1
911     fi
912 fi
913
914 for i in $(seq 1 "${NUM_OPENSTACK_COMPUTE_NODES}"); do
915     COMPUTEIP=OPENSTACK_COMPUTE_NODE_${i}_IP
916     CONTROLIP=OPENSTACK_CONTROL_NODE_1_IP
917     echo "Configure the stack of the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${!COMPUTEIP}"
918     scp "${WORKSPACE}/disable_firewall.sh" "${!COMPUTEIP}:/tmp"
919     ${SSH} "${!COMPUTEIP}" "sudo bash /tmp/disable_firewall.sh"
920     create_etc_hosts "${!COMPUTEIP}" "${!CONTROLIP}"
921     scp "${WORKSPACE}/hosts_file" "${!COMPUTEIP}":/tmp/hosts
922     scp "${WORKSPACE}/get_devstack.sh" "${!COMPUTEIP}":/tmp
923     ${SSH} "${!COMPUTEIP}" "bash /tmp/get_devstack.sh > /tmp/get_devstack.sh.txt 2>&1"
924     create_compute_node_local_conf "${!COMPUTEIP}" "${!CONTROLIP}" "${ODLMGRIP}" "${ODL_OVS_MGRS}"
925     scp "${WORKSPACE}"/local.conf_compute_"${!COMPUTEIP}" "${!COMPUTEIP}":/opt/stack/devstack/local.conf
926     echo "Install rdo release to avoid incompatible Package versions"
927     install_rdo_release "${!COMPUTEIP}"
928     setup_live_migration_compute "${!COMPUTEIP}" "${!CONTROLIP}"
929     [ -n "${OVS_INSTALL}" ] && install_ovs "${!COMPUTEIP}" /tmp/ovs_rpms
930     if [[ "${ENABLE_OS_PLUGINS}" =~ networking-sfc ]]; then
931         # This should be really done by networking-odl devstack plugin,
932         # but in the meantime do it ourselves
933         ssh "${!COMPUTEIP}" "sudo ovs-vsctl set Open_vSwitch . external_ids:of-tunnel=true"
934     fi
935     fix_broken_requirements_versions "${!COMPUTEIP}"
936     echo "Stack the compute node ${i} of ${NUM_OPENSTACK_COMPUTE_NODES}: ${!COMPUTEIP}"
937     ssh "${!COMPUTEIP}" "cd /opt/stack/devstack; nohup ./stack.sh > /opt/stack/devstack/nohup.out 2>&1 &"
938     ssh "${!COMPUTEIP}" "ps -ef | grep stack.sh"
939     os_node_list+=("${!COMPUTEIP}")
940 done
941
942 echo "nodelist: ${os_node_list[*]}"
943
944 # This script runs on the openstack nodes. It greps for a string that devstack writes when stacking is complete.
945 # The script then writes a status depending on the grep output that is later scraped by the robot vm to control
946 # the status polling.
947 cat > "${WORKSPACE}/check_stacking.sh" << EOF
948 > /tmp/stack_progress
949 ps -ef | grep "stack.sh" | grep -v grep
950 ret=\$?
951 if [ \${ret} -eq 1 ]; then
952     grep "This is your host IP address:" /opt/stack/devstack/nohup.out
953     if [ \$? -eq 0 ]; then
954         echo "Stacking Complete" > /tmp/stack_progress
955     else
956         echo "Stacking Failed" > /tmp/stack_progress
957     fi
958 elif [ \${ret} -eq 0 ]; then
959     echo "Still Stacking" > /tmp/stack_progress
960 fi
961 EOF
962
963 # devstack debugging
964 # get_hostnames
965
966 # Check if the stacking is finished. Poll all nodes every 60s for one hour.
967 iteration=0
968 in_progress=1
969 while [ ${in_progress} -eq 1 ]; do
970     # shellcheck disable=SC2004
971     iteration=$(($iteration + 1))
972     for index in "${!os_node_list[@]}"; do
973         echo "node $index ${os_node_list[index]}: checking stacking status attempt ${iteration} of 60"
974         scp "${WORKSPACE}/check_stacking.sh" "${os_node_list[index]}:/tmp"
975         ${SSH} "${os_node_list[index]}" "bash /tmp/check_stacking.sh"
976         scp "${os_node_list[index]}":/tmp/stack_progress .
977         cat stack_progress
978         stacking_status=$(cat stack_progress)
979         # devstack debugging
980         # get_service "${iteration}" "${index}"
981         if [ "$stacking_status" == "Still Stacking" ]; then
982             continue
983         elif [ "$stacking_status" == "Stacking Failed" ]; then
984             echo "node $index ${os_node_list[index]}: stacking has failed"
985             exit 1
986         elif [ "$stacking_status" == "Stacking Complete" ]; then
987             echo "node $index ${os_node_list[index]}: stacking complete"
988             unset 'os_node_list[index]'
989             if  [ ${#os_node_list[@]} -eq 0 ]; then
990                 in_progress=0
991             fi
992         fi
993     done
994     echo "sleep for a minute before the next check"
995     sleep 60
996     if [ ${iteration} -eq 60 ]; then
997         echo "stacking has failed - took longer than 60m"
998         exit 1
999     fi
1000 done
1001
1002 # Further configuration now that stacking is complete.
1003 echo "Configure the Control Node"
1004 CONTROLIP=OPENSTACK_CONTROL_NODE_1_IP
1005 # Gather Compute IPs for the site
1006 for i in $(seq 1 "${NUM_OPENSTACK_COMPUTE_NODES}"); do
1007     IP_VAR=OPENSTACK_COMPUTE_NODE_${i}_IP
1008     COMPUTE_IPS[$((i-1))]=${!IP_VAR}
1009 done
1010
1011 echo "sleep for 60s and print hypervisor-list"
1012 sleep 60
1013 ${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; nova hypervisor-list"
1014 # in the case that we are doing openstack (control + compute) all in one node, then the number of hypervisors
1015 # will be the same as the number of openstack systems. However, if we are doing multinode openstack then the
1016 # assumption is we have a single control node and the rest are compute nodes, so the number of expected hypervisors
1017 # is one less than the total number of openstack systems
1018 if [ "${NUM_OPENSTACK_SYSTEM}" -eq 1 ]; then
1019     expected_num_hypervisors=1
1020 else
1021     expected_num_hypervisors=${NUM_OPENSTACK_COMPUTE_NODES}
1022     if [ "$(is_openstack_feature_enabled n-cpu)" == "1" ]; then
1023         expected_num_hypervisors=$((expected_num_hypervisors + 1))
1024     fi
1025 fi
1026 num_hypervisors=$(${SSH} ${!CONTROLIP} "cd /opt/stack/devstack; source openrc admin admin; openstack hypervisor list -f value | wc -l" | tail -1 | tr -d "\r")
1027 if ! [ "${num_hypervisors}" ] || ! [ "${num_hypervisors}" -eq ${expected_num_hypervisors} ]; then
1028     echo "Error: Only $num_hypervisors hypervisors detected, expected $expected_num_hypervisors"
1029     exit 1
1030 fi
1031
1032 # External Network
1033 echo "prepare external networks by adding vxlan tunnels between all nodes on a separate bridge..."
1034 # FIXME Should there be a unique gateway IP and devstack index for each site?
1035 devstack_index=1
1036 for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
1037     # 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
1038     ${SSH} "$ip" "sudo ovs-vsctl --if-exists del-port br-int $PUBLIC_BRIDGE"
1039     ${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++))"
1040 done
1041
1042 # ipsec support
1043 if [ "${IPSEC_VXLAN_TUNNELS_ENABLED}" == "yes" ]; then
1044     # shellcheck disable=SC2206
1045     ALL_NODES=(${!CONTROLIP} ${COMPUTE_IPS[*]})
1046     for ((inx_ip1=0; inx_ip1<$((${#ALL_NODES[@]} - 1)); inx_ip1++)); do
1047         for ((inx_ip2=$((inx_ip1 + 1)); inx_ip2<${#ALL_NODES[@]}; inx_ip2++)); do
1048             KEY1=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
1049             KEY2=0x$(dd if=/dev/urandom count=32 bs=1 2> /dev/null| xxd -p -c 64)
1050             ID=0x$(dd if=/dev/urandom count=4 bs=1 2> /dev/null| xxd -p -c 8)
1051             ip1=${ALL_NODES[$inx_ip1]}
1052             ip2=${ALL_NODES[$inx_ip2]}
1053             ${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"
1054             ${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"
1055             ${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"
1056             ${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"
1057
1058             ${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"
1059             ${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"
1060             ${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"
1061             ${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"
1062         done
1063     done
1064
1065     for ip in ${!CONTROLIP} ${COMPUTE_IPS[*]}; do
1066         echo "ip xfrm configuration for node $ip:"
1067         ${SSH} "$ip" "sudo ip xfrm policy list"
1068         ${SSH} "$ip" "sudo ip xfrm state list"
1069     done
1070 fi
1071
1072 # Control Node - PUBLIC_BRIDGE will act as the external router
1073 # Parameter values below are used in integration/test - changing them requires updates in intergration/test as well
1074 EXTNET_GATEWAY_IP="10.10.10.250"
1075 EXTNET_INTERNET_IP="10.9.9.9"
1076 EXTNET_PNF_IP="10.10.10.253"
1077 ${SSH} ${!CONTROLIP} "sudo ifconfig ${PUBLIC_BRIDGE} up ${EXTNET_GATEWAY_IP}/24"
1078
1079 # Control Node - external net PNF simulation
1080 ${SSH} ${!CONTROLIP} "
1081     sudo ip netns add pnf_ns;
1082     sudo ip link add pnf_veth0 type veth peer name pnf_veth1;
1083     sudo ip link set pnf_veth1 netns pnf_ns;
1084     sudo ip link set pnf_veth0 up;
1085     sudo ip netns exec pnf_ns ifconfig pnf_veth1 up ${EXTNET_PNF_IP}/24;
1086     sudo ovs-vsctl add-port ${PUBLIC_BRIDGE} pnf_veth0;
1087 "
1088
1089 # Control Node - external net internet address simulation
1090 ${SSH} ${!CONTROLIP} "
1091     sudo ip tuntap add dev internet_tap mode tap;
1092     sudo ifconfig internet_tap up ${EXTNET_INTERNET_IP}/24;
1093 "
1094
1095 # Computes
1096 compute_index=1
1097 for compute_ip in ${COMPUTE_IPS[*]}; do
1098     # Tunnel from controller to compute
1099     COMPUTEPORT=compute$(( compute_index++ ))_vxlan
1100     ${SSH} ${!CONTROLIP} "
1101         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
1102     "
1103     # Tunnel from compute to controller
1104     CONTROLPORT="control_vxlan"
1105     ${SSH} "$compute_ip" "
1106         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
1107     "
1108 done
1109
1110 if [ "${ENABLE_HAPROXY_FOR_NEUTRON}" == "yes" ]; then
1111     odlmgrip=OPENSTACK_HAPROXY_1_IP
1112     HA_PROXY_IP=${!odlmgrip}
1113     HA_PROXY_1_IP=${!odlmgrip}
1114     odlmgrip2=OPENSTACK_HAPROXY_2_IP
1115     HA_PROXY_2_IP=${!odlmgrip2}
1116     odlmgrip3=OPENSTACK_HAPROXY_1_IP
1117     HA_PROXY_3_IP=${!odlmgrip3}
1118 else
1119     HA_PROXY_IP=${ODL_SYSTEM_IP}
1120     HA_PROXY_1_IP=${ODL_SYSTEM_1_IP}
1121     HA_PROXY_2_IP=${ODL_SYSTEM_2_IP}
1122     HA_PROXY_3_IP=${ODL_SYSTEM_3_IP}
1123 fi
1124
1125 get_test_suites SUITES
1126
1127 #install all client versions required for this job testing
1128 install_openstack_clients_in_robot_vm
1129
1130 # TODO: run openrc on control node and then scrape the vars from it
1131 # Environment Variables Needed to execute Openstack Client for NetVirt Jobs
1132 cat > /tmp/os_netvirt_client_rc << EOF
1133 export OS_USERNAME=admin
1134 export OS_PASSWORD=admin
1135 export OS_PROJECT_NAME=admin
1136 export OS_USER_DOMAIN_NAME=default
1137 export OS_PROJECT_DOMAIN_NAME=default
1138 export OS_AUTH_URL="http://${!CONTROLIP}/identity"
1139 export OS_IDENTITY_API_VERSION=3
1140 export OS_IMAGE_API_VERSION=2
1141 export OS_TENANT_NAME=admin
1142 unset OS_CLOUD
1143 EOF
1144
1145 source /tmp/os_netvirt_client_rc
1146
1147 echo "Get all versions before executing robot"
1148 echo "openstack --version"
1149 command -v openstack
1150 openstack --version
1151 echo "nova --version"
1152 command -v nova
1153 nova --version
1154 echo "neutron --version"
1155 command -v neutron
1156 neutron --version
1157
1158 stacktime=$(timer "$totaltmr")
1159 printf "Stacking elapsed time: %s\n" "${stacktime}"
1160
1161 echo "Starting Robot test suites ${SUITES} ..."
1162 # please add robot -v arguments on a single line and alphabetized
1163 suite_num=0
1164 # ${TESTOPTIONS}, ${SUITES} are space-separated parameters and should not be quoted.
1165  # shellcheck disable=SC2086
1166 for suite in ${SUITES}; do
1167     # prepend an incremental counter to the suite name so that the full robot log combining all the suites as is done
1168     # in the rebot step below will list all the suites in chronological order as rebot seems to alphabetize them
1169     (( suite_num = suite_num + 1 ))
1170     suite_index="$(printf %02d "${suite_num}")"
1171     suite_name="$(basename "${suite}" | cut -d. -f1)"
1172     log_name="${suite_index}_${suite_name}"
1173     robot -N "${log_name}" \
1174     -c critical -e exclude -e "skip_if_${DISTROSTREAM}" \
1175     --log "log_${log_name}.html" --report "report_${log_name}.html" --output "output_${log_name}.xml" \
1176     --removekeywords wuks \
1177     --removekeywords name:SetupUtils.Setup_Utils_For_Setup_And_Teardown \
1178     --removekeywords name:SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing \
1179     --removekeywords name:OpenStackOperations.Add_OVS_Logging_On_All_OpenStack_Nodes \
1180     -v BUNDLEFOLDER:"${BUNDLEFOLDER}" \
1181     -v BUNDLE_URL:"${ACTUAL_BUNDLE_URL}" \
1182     -v CMP_INSTANCES_SHARED_PATH:/var/instances \
1183     -v CONTROLLERFEATURES:"${CONTROLLERFEATURES}" \
1184     -v CONTROLLER_USER:"${USER}" \
1185     -v DEVSTACK_DEPLOY_PATH:/opt/stack/devstack \
1186     -v ENABLE_ITM_DIRECT_TUNNELS:"${ENABLE_ITM_DIRECT_TUNNELS}" \
1187     -v HA_PROXY_IP:"${HA_PROXY_IP}" \
1188     -v HA_PROXY_1_IP:"${HA_PROXY_1_IP}" \
1189     -v HA_PROXY_2_IP:"${HA_PROXY_2_IP}" \
1190     -v HA_PROXY_3_IP:"${HA_PROXY_3_IP}" \
1191     -v JDKVERSION:"${JDKVERSION}" \
1192     -v JENKINS_WORKSPACE:"${WORKSPACE}" \
1193     -v NEXUSURL_PREFIX:"${NEXUSURL_PREFIX}" \
1194     -v NUM_ODL_SYSTEM:"${NUM_ODL_SYSTEM}" \
1195     -v NUM_OS_SYSTEM:"${NUM_OPENSTACK_SYSTEM}" \
1196     -v NUM_TOOLS_SYSTEM:"${NUM_TOOLS_SYSTEM}" \
1197     -v ODL_SNAT_MODE:"${ODL_SNAT_MODE}" \
1198     -v GROUP_ADD_MOD_ENABLED:"${GROUP_ADD_MOD_ENABLED}" \
1199     -v ODL_STREAM:"${DISTROSTREAM}" \
1200     -v ODL_SYSTEM_IP:"${ODL_SYSTEM_IP}" \
1201     -v ODL_SYSTEM_1_IP:"${ODL_SYSTEM_1_IP}" \
1202     -v ODL_SYSTEM_2_IP:"${ODL_SYSTEM_2_IP}" \
1203     -v ODL_SYSTEM_3_IP:"${ODL_SYSTEM_3_IP}" \
1204     -v ODL_SYSTEM_4_IP:"${ODL_SYSTEM_4_IP}" \
1205     -v ODL_SYSTEM_5_IP:"${ODL_SYSTEM_5_IP}" \
1206     -v ODL_SYSTEM_6_IP:"${ODL_SYSTEM_6_IP}" \
1207     -v ODL_SYSTEM_7_IP:"${ODL_SYSTEM_7_IP}" \
1208     -v ODL_SYSTEM_8_IP:"${ODL_SYSTEM_8_IP}" \
1209     -v ODL_SYSTEM_9_IP:"${ODL_SYSTEM_9_IP}" \
1210     -v OS_CONTROL_NODE_IP:"${OPENSTACK_CONTROL_NODE_1_IP}" \
1211     -v OS_CONTROL_NODE_1_IP:"${OPENSTACK_CONTROL_NODE_1_IP}" \
1212     -v OS_CONTROL_NODE_2_IP:"${OPENSTACK_CONTROL_NODE_2_IP}" \
1213     -v OS_CONTROL_NODE_3_IP:"${OPENSTACK_CONTROL_NODE_3_IP}" \
1214     -v OPENSTACK_BRANCH:"${OPENSTACK_BRANCH}" \
1215     -v OS_COMPUTE_1_IP:"${OPENSTACK_COMPUTE_NODE_1_IP}" \
1216     -v OS_COMPUTE_2_IP:"${OPENSTACK_COMPUTE_NODE_2_IP}" \
1217     -v OS_COMPUTE_3_IP:"${OPENSTACK_COMPUTE_NODE_3_IP}" \
1218     -v OS_COMPUTE_4_IP:"${OPENSTACK_COMPUTE_NODE_4_IP}" \
1219     -v OS_COMPUTE_5_IP:"${OPENSTACK_COMPUTE_NODE_5_IP}" \
1220     -v OS_COMPUTE_6_IP:"${OPENSTACK_COMPUTE_NODE_6_IP}" \
1221     -v OPENSTACK_TOPO:"${OPENSTACK_TOPO}" \
1222     -v OS_USER:"${USER}" \
1223     -v PUBLIC_PHYSICAL_NETWORK:"${PUBLIC_PHYSICAL_NETWORK}" \
1224     -v SECURITY_GROUP_MODE:"${SECURITY_GROUP_MODE}" \
1225     -v TOOLS_SYSTEM_IP:"${TOOLS_SYSTEM_1_IP}" \
1226     -v TOOLS_SYSTEM_1_IP:"${TOOLS_SYSTEM_1_IP}" \
1227     -v TOOLS_SYSTEM_2_IP:"${TOOLS_SYSTEM_2_IP}" \
1228     -v TOOLS_SYSTEM_3_IP:"${TOOLS_SYSTEM_3_IP}" \
1229     -v USER_HOME:"${HOME}" \
1230     -v WORKSPACE:/tmp \
1231     ${TESTOPTIONS} ${suite} || true
1232 done
1233 #rebot exit codes seem to be different
1234 rebot --output "${WORKSPACE}/output.xml" --log log_full.html --report report.html -N openstack output_*.xml || true
1235
1236 echo "Examining the files in data/log and checking file size"
1237 # shellcheck disable=SC2029
1238 ssh "${ODL_SYSTEM_IP}" "ls -altr /tmp/${BUNDLEFOLDER}/data/log/"
1239 # shellcheck disable=SC2029
1240 ssh "${ODL_SYSTEM_IP}" "du -hs /tmp/${BUNDLEFOLDER}/data/log/*"
1241
1242 echo "Tests Executed"
1243 printf "Total elapsed time: %s, stacking time: %s\n" "$(timer "$totaltmr")" "${stacktime}"
1244 true  # perhaps Jenkins is testing last exit code
1245 # vim: ts=4 sw=4 sts=4 et ft=sh :