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