Merge "Adds configuring vpp/hc on all nodes"
[apex.git] / lib / overcloud-deploy-functions.sh
1 #!/usr/bin/env bash
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 ##preping it for deployment and launch the deploy
12 ##params: none
13 function overcloud_deploy {
14   if [[ "${#deploy_options_array[@]}" -eq 0 || "${deploy_options_array['sdn_controller']}" == 'opendaylight' ]]; then
15     if [ "${deploy_options_array['sdn_l3']}" == 'True' ]; then
16       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_l3.yaml"
17     elif [ "${deploy_options_array['sfc']}" == 'True' ]; then
18       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_sfc.yaml"
19     elif [ "${deploy_options_array['vpn']}" == 'True' ]; then
20       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_sdnvpn.yaml"
21     elif [ "${deploy_options_array['vpp']}" == 'True' ]; then
22       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_fdio.yaml"
23     elif [ "${deploy_options_array['vpn']}" == 'true' ]; then
24       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_sdnvpn.yaml"
25     else
26       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight.yaml"
27     fi
28     SDN_IMAGE=opendaylight
29     if [ "${deploy_options_array['sfc']}" == 'True' ]; then
30       SDN_IMAGE+=-sfc
31       if [ ! -f $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 ]; then
32           echo "${red} $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 is required to execute an SFC deployment."
33           echo "Please install the opnfv-apex-opendaylight-sfc package to provide this overcloud image for deployment.${reset}"
34           exit 1
35       fi
36     fi
37   elif [ "${deploy_options_array['sdn_controller']}" == 'opendaylight-external' ]; then
38     DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight-external.yaml"
39     SDN_IMAGE=opendaylight
40   elif [ "${deploy_options_array['sdn_controller']}" == 'onos' ]; then
41     if [ "${deploy_options_array['sfc']}" == 'True' ]; then
42       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/onos_sfc.yaml"
43     else
44       DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/onos.yaml"
45     fi
46     SDN_IMAGE=onos
47   elif [ "${deploy_options_array['sdn_controller']}" == 'opencontrail' ]; then
48     echo -e "${red}ERROR: OpenContrail is currently unsupported...exiting${reset}"
49     exit 1
50   elif [[ -z "${deploy_options_array['sdn_controller']}" || "${deploy_options_array['sdn_controller']}" == 'False' ]]; then
51     echo -e "${blue}INFO: SDN Controller disabled...will deploy nosdn scenario${reset}"
52     SDN_IMAGE=opendaylight
53   else
54     echo "${red}Invalid sdn_controller: ${deploy_options_array['sdn_controller']}${reset}"
55     echo "${red}Valid choices are opendaylight, opendaylight-external, onos, opencontrail, False, or null${reset}"
56     exit 1
57   fi
58
59
60
61   # Make sure the correct overcloud image is available
62   if [ ! -f $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 ]; then
63       echo "${red} $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 is required to execute your deployment."
64       echo "Both ONOS and OpenDaylight are currently deployed from this image."
65       echo "Please install the opnfv-apex package to provide this overcloud image for deployment.${reset}"
66       exit 1
67   fi
68
69   echo "Copying overcloud image to Undercloud"
70   ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" "rm -f overcloud-full.qcow2"
71   scp ${SSH_OPTIONS[@]} $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 "stack@$UNDERCLOUD":overcloud-full.qcow2
72
73   # Install ovs-dpdk inside the overcloud image if it is enabled.
74   if [[ "${deploy_options_array['dataplane']}" == 'ovs_dpdk' || "${deploy_options_array['dataplane']}" == 'fdio' ]]; then
75     # install dpdk packages before ovs
76     echo -e "${blue}INFO: Enabling kernel modules for dpdk inside overcloud image${reset}"
77
78     ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
79       cat << EOF > vfio_pci.modules
80 #!/bin/bash
81 exec /sbin/modprobe vfio_pci >/dev/null 2>&1
82 EOF
83
84       cat << EOF > uio_pci_generic.modules
85 #!/bin/bash
86 exec /sbin/modprobe uio_pci_generic >/dev/null 2>&1
87 EOF
88
89       LIBGUESTFS_BACKEND=direct virt-customize --upload vfio_pci.modules:/etc/sysconfig/modules/ \
90                                                --upload uio_pci_generic.modules:/etc/sysconfig/modules/ \
91                                                --run-command "chmod 0755 /etc/sysconfig/modules/vfio_pci.modules" \
92                                                --run-command "chmod 0755 /etc/sysconfig/modules/uio_pci_generic.modules" \
93                                                -a overcloud-full.qcow2
94
95       if [ "${deploy_options_array['dataplane']}" == 'fdio' ]; then
96         sed -i '/FdioEnabled:/c\  FdioEnabled: true' opnfv-environment.yaml
97       else
98         LIBGUESTFS_BACKEND=direct virt-customize --run-command "yum install -y /root/dpdk_rpms/*" \
99                                                  -a overcloud-full.qcow2
100       fi
101 EOI
102
103   elif [ "${deploy_options_array['dataplane']}" != 'ovs' ]; then
104     echo "${red}${deploy_options_array['dataplane']} not supported${reset}"
105     exit 1
106   fi
107
108   # Set ODL version accordingly
109   if [[ "${deploy_options_array['sdn_controller']}" == 'opendaylight' && "${deploy_options_array['odl_version']}" == 'boron' ]]; then
110     ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
111       LIBGUESTFS_BACKEND=direct virt-customize --run-command "yum -y remove opendaylight" \
112                                                --run-command "yum -y install /root/boron/*" \
113                                                -a overcloud-full.qcow2
114 EOI
115   fi
116
117   # Add performance deploy options if they have been set
118   if [ ! -z "${deploy_options_array['performance']}" ]; then
119
120     # Remove previous kernel args files per role
121     ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" "rm -f Compute-kernel_params.txt"
122     ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" "rm -f Controller-kernel_params.txt"
123
124     # Push performance options to subscript to modify per-role images as needed
125     for option in "${performance_options[@]}" ; do
126       echo -e "${blue}Setting performance option $option${reset}"
127       ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" "bash build_perf_image.sh $option"
128     done
129
130     # Build IPA kernel option ramdisks
131     ssh -T ${SSH_OPTIONS[@]} "root@$UNDERCLOUD" <<EOI
132 /bin/cp -f /home/stack/ironic-python-agent.initramfs /root/
133 mkdir -p ipa/
134 pushd ipa
135 gunzip -c ../ironic-python-agent.initramfs | cpio -i
136 if [ ! -f /home/stack/Compute-kernel_params.txt ]; then
137   touch /home/stack/Compute-kernel_params.txt
138   chown stack /home/stack/Compute-kernel_params.txt
139 fi
140 /bin/cp -f /home/stack/Compute-kernel_params.txt tmp/kernel_params.txt
141 echo "Compute params set: "
142 cat tmp/kernel_params.txt
143 /bin/cp -f /root/image.py usr/lib/python2.7/site-packages/ironic_python_agent/extensions/image.py
144 /bin/cp -f /root/image.pyc usr/lib/python2.7/site-packages/ironic_python_agent/extensions/image.pyc
145 find . | cpio -o -H newc | gzip > /home/stack/Compute-ironic-python-agent.initramfs
146 chown stack /home/stack/Compute-ironic-python-agent.initramfs
147 if [ ! -f /home/stack/Controller-kernel_params.txt ]; then
148   touch /home/stack/Controller-kernel_params.txt
149   chown stack /home/stack/Controller-kernel_params.txt
150 fi
151 /bin/cp -f /home/stack/Controller-kernel_params.txt tmp/kernel_params.txt
152 echo "Controller params set: "
153 cat tmp/kernel_params.txt
154 find . | cpio -o -H newc | gzip > /home/stack/Controller-ironic-python-agent.initramfs
155 chown stack /home/stack/Controller-ironic-python-agent.initramfs
156 popd
157 /bin/rm -rf ipa/
158 EOI
159
160     # set NIC heat params and resource registry
161     ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
162 sed -i '/TenantNIC:/c\  TenantNIC: '${private_network_compute_interface} opnfv-environment.yaml
163 sed -i '/PublicNIC:/c\  PublicNIC: '${public_network_compute_interface} opnfv-environment.yaml
164 EOI
165
166     DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/numa.yaml"
167   fi
168
169   # make sure ceph is installed
170   DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml"
171
172   # scale compute nodes according to inventory
173   total_nodes=$(ssh -T ${SSH_OPTIONS[@]} "root@$UNDERCLOUD" "cat /home/stack/instackenv.json | grep -c memory")
174
175   # check if HA is enabled
176   if [[ "$ha_enabled" == "True" ]]; then
177      DEPLOY_OPTIONS+=" --control-scale 3"
178      compute_nodes=$((total_nodes - 3))
179      DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/puppet-pacemaker.yaml"
180   else
181      compute_nodes=$((total_nodes - 1))
182   fi
183
184   if [ "$compute_nodes" -le 0 ]; then
185     echo -e "${red}ERROR: Invalid number of compute nodes: ${compute_nodes}. Check your inventory file.${reset}"
186     exit 1
187   else
188     echo -e "${blue}INFO: Number of compute nodes set for deployment: ${compute_nodes}${reset}"
189     DEPLOY_OPTIONS+=" --compute-scale ${compute_nodes}"
190   fi
191
192   if [[ "$net_isolation_enabled" == "TRUE" ]]; then
193      #DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/network-isolation.yaml"
194      DEPLOY_OPTIONS+=" -e network-environment.yaml"
195   fi
196
197   if [[ "$ha_enabled" == "True" ]] || [[ "$net_isolation_enabled" == "TRUE" ]]; then
198      DEPLOY_OPTIONS+=" --ntp-server $ntp_server"
199   fi
200
201   DEPLOY_OPTIONS+=" --control-flavor control --compute-flavor compute"
202   if [[ "$virtual" == "TRUE" ]]; then
203      DEPLOY_OPTIONS+=" -e virtual-environment.yaml"
204   fi
205
206   DEPLOY_OPTIONS+=" -e opnfv-environment.yaml"
207
208   echo -e "${blue}INFO: Deploy options set:\n${DEPLOY_OPTIONS}${reset}"
209
210   ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
211 if [ "$debug" == 'TRUE' ]; then
212     LIBGUESTFS_BACKEND=direct virt-customize -a overcloud-full.qcow2 --root-password password:opnfvapex
213 fi
214
215 if [ "${deploy_options_array['tacker']}" == 'False' ]; then
216     sed -i '/EnableTacker:/c\  EnableTacker: false' opnfv-environment.yaml
217 fi
218
219 # Create a key for use by nova for live migration
220 echo "Creating nova SSH key for nova resize support"
221 ssh-keygen -f nova_id_rsa -b 1024 -P ""
222 public_key=\'\$(cat nova_id_rsa.pub | cut -d ' ' -f 2)\'
223 sed -i "s#replace_public_key:#key: \$public_key#g" opnfv-environment.yaml
224 python -c 'open("opnfv-environment-new.yaml", "w").write((open("opnfv-environment.yaml").read().replace("replace_private_key:", "key: \"" + "".join(open("nova_id_rsa").readlines()).replace("\\n","\\\n") + "\"")))'
225 mv -f opnfv-environment-new.yaml opnfv-environment.yaml
226
227 source stackrc
228 set -o errexit
229 # Workaround for APEX-207 where sometimes swift proxy is down
230 if ! sudo systemctl status openstack-swift-proxy > /dev/null; then
231   sudo systemctl restart openstack-swift-proxy
232 fi
233 echo "Uploading overcloud glance images"
234 openstack overcloud image upload
235
236 echo "Configuring undercloud and discovering nodes"
237 openstack baremetal import --json instackenv.json
238 openstack baremetal configure boot
239 bash -x set_perf_images.sh ${performance_roles[@]}
240 #if [[ -z "$virtual" ]]; then
241 #  openstack baremetal introspection bulk start
242 #fi
243 echo "Configuring flavors"
244 for flavor in baremetal control compute; do
245   echo -e "${blue}INFO: Updating flavor: \${flavor}${reset}"
246   if openstack flavor list | grep \${flavor}; then
247     openstack flavor delete \${flavor}
248   fi
249   openstack flavor create --id auto --ram 4096 --disk 39 --vcpus 1 \${flavor}
250   if ! openstack flavor list | grep \${flavor}; then
251     echo -e "${red}ERROR: Unable to create flavor \${flavor}${reset}"
252   fi
253 done
254 openstack flavor set --property "cpu_arch"="x86_64" --property "capabilities:boot_option"="local" baremetal
255 openstack flavor set --property "cpu_arch"="x86_64" --property "capabilities:boot_option"="local" --property "capabilities:profile"="control" control
256 openstack flavor set --property "cpu_arch"="x86_64" --property "capabilities:boot_option"="local" --property "capabilities:profile"="compute" compute
257 echo "Configuring nameserver on ctlplane network"
258 dns_server_ext=''
259 for dns_server in ${dns_servers}; do
260   dns_server_ext="\${dns_server_ext} --dns-nameserver \${dns_server}"
261 done
262 neutron subnet-update \$(neutron subnet-list | grep -Ev "id|tenant|external|storage" | grep -v \\\\-\\\\- | awk {'print \$2'}) \${dns_server_ext}
263 sed -i '/CloudDomain:/c\  CloudDomain: '${domain_name} opnfv-environment.yaml
264 echo "Executing overcloud deployment, this should run for an extended period without output."
265 sleep 60 #wait for Hypervisor stats to check-in to nova
266 # save deploy command so it can be used for debugging
267 cat > deploy_command << EOF
268 openstack overcloud deploy --templates $DEPLOY_OPTIONS --timeout 90
269 EOF
270 EOI
271
272   if [ "$interactive" == "TRUE" ]; then
273     if ! prompt_user "Overcloud Deployment"; then
274       echo -e "${blue}INFO: User requests exit${reset}"
275       exit 0
276     fi
277   fi
278
279   ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
280 source stackrc
281 openstack overcloud deploy --templates $DEPLOY_OPTIONS --timeout 90
282 if ! heat stack-list | grep CREATE_COMPLETE 1>/dev/null; then
283   $(typeset -f debug_stack)
284   debug_stack
285   exit 1
286 fi
287 EOI
288
289   # Configure DPDK
290   if [ "${deploy_options_array['dataplane']}" == 'ovs_dpdk' ]; then
291     ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI || (echo "DPDK config failed, exiting..."; exit 1)
292 source stackrc
293 set -o errexit
294 for node in \$(nova list | grep novacompute | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+"); do
295 echo "Running DPDK test app on \$node"
296 ssh -T ${SSH_OPTIONS[@]} "heat-admin@\$node" <<EOF
297 set -o errexit
298 sudo dpdk_helloworld --no-pci
299 sudo dpdk_nic_bind -s
300 EOF
301 done
302 EOI
303   fi
304
305   if [ "$debug" == 'TRUE' ]; then
306       ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
307 source overcloudrc
308 echo "Keystone Endpoint List:"
309 openstack endpoint list
310 echo "Keystone Service List"
311 openstack service list
312 cinder quota-show \$(openstack project list | grep admin | awk {'print \$2'})
313 EOI
314   fi
315 }