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