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