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