[docs] Update documentation on scenarios for MS6
[fuel.git] / ci / deploy.sh
1 #!/bin/bash -e
2 # shellcheck disable=SC2034,SC2154,SC1090,SC1091,SC2155
3 ##############################################################################
4 # Copyright (c) 2018 Ericsson AB, Mirantis Inc., Enea AB and others.
5 # jonas.bjurel@ericsson.com
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 ##############################################################################
13 # BEGIN of Exit handlers
14 #
15 do_exit () {
16     local RC=$?
17     cleanup_mounts > /dev/null 2>&1
18     if [ ${RC} -eq 0 ]; then
19         notify_n "[OK] MCP: Openstack installation finished succesfully!" 2
20     else
21         notify_n "[ERROR] MCP: Openstack installation threw a fatal error!"
22     fi
23 }
24 #
25 # End of Exit handlers
26 ##############################################################################
27
28 ##############################################################################
29 # BEGIN of usage description
30 #
31 usage ()
32 {
33 cat << EOF
34 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
35 $(notify "$(basename "$0"): Deploy the Fuel@OPNFV MCP stack" 3)
36
37 $(notify "USAGE:" 2)
38   $(basename "$0") -l lab-name -p pod-name -s deploy-scenario \\
39     [-b Lab Config Base URI] \\
40     [-S storage-dir] [-L /path/to/log/file.tar.gz] \\
41     [-f] [-F] [-e | -E[E]] [-d] [-D] [-N] [-m]
42
43 $(notify "OPTIONS:" 2)
44   -b  Base-uri for the stack-configuration structure
45   -d  Dry-run
46   -D  Debug logging
47   -e  Do not launch environment deployment
48   -E  Remove existing VCP VMs (use twice to redeploy baremetal nodes)
49   -f  Deploy on existing Salt master (use twice or more to skip states)
50   -F  Same as -e, do not launch environment deployment (legacy option)
51   -h  Print this message and exit
52   -l  Lab-name
53   -p  Pod-name
54   -P  Skip installation of package dependencies
55   -s  Deploy-scenario short-name
56   -S  Storage dir for VM images and other deploy artifacts
57   -L  Deployment log path and file name
58   -m  Use single socket CPU compute nodes (only affects virtual computes)
59   -N  Experimental: Do not virtualize control plane (novcp)
60
61 $(notify_i "Description:" 2)
62 Deploys the Fuel@OPNFV stack on the indicated lab resource.
63
64 This script provides the Fuel@OPNFV deployment abstraction.
65 It depends on the OPNFV official configuration directory/file structure
66 and provides a fairly simple mechanism to execute a deployment.
67
68 $(notify_i "Input parameters to the build script are:" 2)
69 -b Base URI to the configuration directory (needs to be provided in URI style,
70    it can be a local resource: file:// or a remote resource http(s)://).
71    A POD Descriptor File (PDF) and its Installer Descriptor File (IDF)
72    companion should be available at:
73    <base-uri>/labs/<lab-name>/<pod-name>.yaml
74    <base-uri>/labs/<lab-name>/idf-<pod-name>.yaml
75    The default is using the git submodule tracking 'OPNFV Pharos' in
76    <./mcp/scripts/pharos>.
77    An example config is provided inside current repo in
78    <./mcp/config>, automatically linked as <./mcp/scripts/pharos/labs/local>.
79 -d Dry-run - Produce deploy config files, but do not execute deploy
80 -D Debug logging - Enable extra logging in sh deploy scripts (set -x)
81 -e Do not launch environment deployment
82 -E Remove existing VCP VMs. It will destroy and undefine all VCP VMs
83    currently defined on cluster KVM nodes. If specified twice (e.g. -E -E),
84    baremetal nodes (VCP too, implicitly) will be removed, then reprovisioned.
85    Only applicable for baremetal deploys.
86 -f Deploy on existing Salt master. It will skip infrastructure VM creation,
87    but it will still sync reclass configuration from current repo to Salt
88    Master node.
89    Each additional use skips one more state file. For example, -fff would
90    skip the first 3 state files (e.g. virtual_init, maas, baremetal_init).
91 -F Same as -e, do not launch environment deployment (legacy option)
92 -h Print this message and exit
93 -L Deployment log path and name, eg. -L /home/jenkins/job.log.tar.gz
94 -l Lab name as defined in the configuration directory, e.g. lf
95    For the sample configuration in <./mcp/config>, lab name is 'local'.
96 -p POD name as defined in the configuration directory, e.g. pod2
97    For the sample configuration in <./mcp/config>, POD name is 'virtual1'
98    for virtual deployments or 'pod1' for baremetal (based on lf-pod2).
99 -m Use single socket compute nodes. Instead of using default NUMA-enabled
100    topology for virtual compute nodes created via libvirt, configure a
101    single guest CPU socket.
102 -N Experimental: Instead of virtualizing the control plane (VCP), deploy
103    control plane directly on baremetal nodes
104 -P Skip installing dependency distro packages on current host
105    This flag should only be used if you have kept back older packages that
106    would be upgraded and that is undesirable on the current system.
107    Note that without the required packages, deploy will fail.
108 -s Deployment-scenario, this points to a short deployment scenario name, which
109    has to be defined in config directory (e.g. os-odl-nofeature-ha).
110 -S Storage dir for VM images, default is mcp/deploy/images
111
112 $(notify_i "[NOTE] sudo & virsh priviledges are needed for this script to run" 3)
113
114 Example:
115
116 $(notify_i "sudo $(basename "$0") \\
117   -b file:///home/jenkins/securedlab \\
118   -l lf -p pod2 \\
119   -s os-odl-nofeature-ha" 2)
120 EOF
121 }
122
123 #
124 # END of usage description
125 ##############################################################################
126
127 ##############################################################################
128 # BEGIN of variables to customize
129 #
130 CI_DEBUG=${CI_DEBUG:-0}; [[ "${CI_DEBUG}" =~ (false|0) ]] || set -x
131 MCP_REPO_ROOT_PATH=$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")
132 DEPLOY_DIR=$(cd "${MCP_REPO_ROOT_PATH}/mcp/scripts"; pwd)
133 MCP_STORAGE_DIR=$(cd "${MCP_REPO_ROOT_PATH}/mcp/deploy/images"; pwd)
134 URI_REGEXP='(file|https?|ftp)://.*'
135 BASE_CONFIG_URI="file://${MCP_REPO_ROOT_PATH}/mcp/scripts/pharos"
136
137 # Customize deploy workflow
138 DRY_RUN=${DRY_RUN:-0}
139 USE_EXISTING_PKGS=${USE_EXISTING_PKGS:-0}
140 USE_EXISTING_INFRA=${USE_EXISTING_INFRA:-0}
141 NO_DEPLOY_ENVIRONMENT=${NO_DEPLOY_ENVIRONMENT:-0}
142 ERASE_ENV=${ERASE_ENV:-0}
143 MCP_VCP=${MCP_VCP:-1}
144 MCP_DOCKER_TAG=${MCP_DOCKER_TAG:-latest}
145 MCP_CMP_SS=${MCP_CMP_SS:-0}
146
147 source "${DEPLOY_DIR}/globals.sh"
148 source "${DEPLOY_DIR}/lib.sh"
149 source "${DEPLOY_DIR}/lib_template.sh"
150
151 #
152 # END of variables to customize
153 ##############################################################################
154
155 ##############################################################################
156 # BEGIN of main
157 #
158 set +x
159 while getopts "b:dDfEFl:L:Np:Ps:S:he" OPTION
160 do
161     case $OPTION in
162         b)
163             BASE_CONFIG_URI=${OPTARG}
164             if [[ ! $BASE_CONFIG_URI =~ ${URI_REGEXP} ]]; then
165                 notify "[ERROR] -b $BASE_CONFIG_URI - invalid URI"
166                 usage
167                 exit 1
168             fi
169             ;;
170         d)
171             DRY_RUN=1
172             ;;
173         D)
174             CI_DEBUG=1
175             ;;
176         f)
177             ((USE_EXISTING_INFRA+=1))
178             ;;
179         F|e)
180             NO_DEPLOY_ENVIRONMENT=1
181             ;;
182         E)
183             ((ERASE_ENV+=1))
184             ;;
185         l)
186             TARGET_LAB=${OPTARG}
187             ;;
188         L)
189             DEPLOY_LOG="${OPTARG}"
190             ;;
191         m)
192             MCP_CMP_SS=1
193             ;;
194         N)
195             MCP_VCP=0
196             ;;
197         p)
198             TARGET_POD=${OPTARG}
199             ;;
200         P)
201             USE_EXISTING_PKGS=1
202             ;;
203         s)
204             DEPLOY_SCENARIO=${OPTARG}
205             ;;
206         S)
207             if [[ ${OPTARG} ]]; then
208                 MCP_STORAGE_DIR="${OPTARG}"
209             fi
210             ;;
211         h)
212             usage
213             exit 0
214             ;;
215         *)
216             notify_e "[ERROR] Unsupported arg, see -h for help"
217             ;;
218     esac
219 done
220
221 if [[ "$(sudo whoami)" != 'root' ]]; then
222     notify_e "[ERROR] This script requires sudo rights"
223 fi
224
225 # Validate mandatory arguments are set
226 if [ -z "${TARGET_LAB}" ] || [ -z "${TARGET_POD}" ] || \
227    [ -z "${DEPLOY_SCENARIO}" ]; then
228     usage
229     notify_e "[ERROR] At least one of the mandatory args is missing!"
230 fi
231
232 [[ "${CI_DEBUG}" =~ (false|0) ]] || set -x
233
234 # Enable the automatic exit trap
235 trap do_exit SIGINT SIGTERM EXIT
236
237 # Set no restrictive umask so that Jenkins can remove any residuals
238 umask 0000
239
240 pushd "${DEPLOY_DIR}" > /dev/null
241 # Prepare the deploy config files based on lab/pod information, deployment
242 # scenario, etc.
243
244 # Install required packages on jump server
245 if [ ${USE_EXISTING_PKGS} -eq 1 ]; then
246     notify "[NOTE] Skipping distro pkg installation" 2
247 else
248     notify "[NOTE] Installing required distro pkgs" 2
249     jumpserver_pkg_install 'deploy'
250     docker_install "${MCP_STORAGE_DIR}"
251     virtinst_install "${MCP_STORAGE_DIR}"
252 fi
253
254 if ! virsh list >/dev/null 2>&1; then
255     notify_e "[ERROR] This script requires hypervisor access"
256 fi
257
258 # Collect jump server system information for deploy debugging
259 ./sysinfo_print.sh
260
261 # Clone git submodules and apply our patches
262 make -C "${MCP_REPO_ROOT_PATH}/mcp/patches" deepclean patches-import
263
264 # Check scenario file existence
265 SCENARIO_DIR="$(readlink -f "../config/scenario")"
266 if [ ! -f "${SCENARIO_DIR}/${DEPLOY_SCENARIO}.yaml" ] && \
267    [ ! -f "${SCENARIO_DIR}/${DEPLOY_SCENARIO}.yaml.j2" ]; then
268     notify_e "[ERROR] Scenario definition file is missing!"
269 fi
270
271 # key might not exist yet ...
272 generate_ssh_key
273 export MAAS_SSH_KEY="$(cat "$(basename "${SSH_KEY}").pub")"
274
275 MCP_DPDK_MODE=$([[ "$DEPLOY_SCENARIO" =~ ovs ]] && echo 1 || echo 0)
276 # Expand jinja2 templates based on PDF data and env vars
277 export MCP_REPO_ROOT_PATH MCP_VCP MCP_DPDK_MODE MCP_STORAGE_DIR MCP_DOCKER_TAG \
278        MCP_CMP_SS MCP_JUMP_ARCH=$(uname -i)
279 do_templates_scenario "${MCP_STORAGE_DIR}" "${TARGET_LAB}" "${TARGET_POD}" \
280                       "${BASE_CONFIG_URI}" "${SCENARIO_DIR}" \
281                       "${SCENARIO_DIR}/${DEPLOY_SCENARIO}.yaml"
282 do_templates_cluster  "${MCP_STORAGE_DIR}" "${TARGET_LAB}" "${TARGET_POD}" \
283                       "${MCP_REPO_ROOT_PATH}" \
284                       "${SCENARIO_DIR}/defaults.yaml"
285
286 # Determine additional data (e.g. jump bridge names) based on XDF
287 source "${DEPLOY_DIR}/xdf_data.sh"
288
289 # Jumpserver prerequisites check
290 notify "[NOTE] Using bridges: ${OPNFV_BRIDGES[*]}" 2
291 jumpserver_check_requirements "${virtual_nodes[*]}" "${OPNFV_BRIDGES[@]}"
292
293 # Infra setup
294 if [ ${DRY_RUN} -eq 1 ]; then
295     notify "[NOTE] Dry run, skipping all deployment tasks" 2
296     exit 0
297 elif [ ${USE_EXISTING_INFRA} -gt 0 ]; then
298     notify "[NOTE] Use existing infra: skip first ${USE_EXISTING_INFRA} states" 2
299     notify "[STATE] Skipping: ${cluster_states[*]::${USE_EXISTING_INFRA}}" 2
300 else
301     prepare_vms "${base_image}" "${MCP_STORAGE_DIR}" "${virtual_repos_pkgs}" \
302       "${virtual_nodes[@]}"
303     prepare_containers "${MCP_STORAGE_DIR}"
304     create_networks "${OPNFV_BRIDGES[@]}"
305     do_sysctl_cfg
306     do_udev_cfg
307     create_vms "${MCP_STORAGE_DIR}" "${virtual_nodes_data}" "${OPNFV_BRIDGES[@]}"
308     update_mcpcontrol_network
309     start_vms "${virtual_nodes[@]}"
310 fi
311
312 start_containers "${MCP_STORAGE_DIR}"
313 check_connection
314
315 # Openstack cluster setup
316 set +x
317 if [ ${NO_DEPLOY_ENVIRONMENT} -eq 1 ]; then
318     notify "[NOTE] Skip openstack cluster setup" 2
319 else
320     for state in "${cluster_states[@]:${USE_EXISTING_INFRA}}"; do
321         notify "[STATE] Applying state: ${state}" 2
322         # shellcheck disable=SC2086,2029
323         wait_for 5 "ssh ${SSH_OPTS} ${SSH_SALT} sudo \
324             CI_DEBUG=$CI_DEBUG ERASE_ENV=$ERASE_ENV \
325             /root/fuel/mcp/config/states/${state}"
326         if [ "${state}" = 'maas' ]; then
327             # For hybrid PODs (virtual + baremetal nodes), the virtual nodes
328             # should be reset to force a DHCP request from MaaS DHCP
329             reset_vms "${virtual_nodes[@]}"
330         fi
331     done
332 fi
333
334 ./log.sh "${DEPLOY_LOG}"
335
336 popd > /dev/null
337
338 #
339 # END of main
340 ##############################################################################