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