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