dd038643a0c26d403ccf2b97e9ab307c46d9e932
[apex.git] / ci / deploy.sh
1 #!/bin/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 # Deploy script to install provisioning server for OPNFV Apex
12 # author: Dan Radez (dradez@redhat.com)
13 # author: Tim Rozet (trozet@redhat.com)
14 #
15 # Based on RDO Manager http://www.rdoproject.org
16
17 set -e
18
19 ##VARIABLES
20 reset=$(tput sgr0 || echo "")
21 blue=$(tput setaf 4 || echo "")
22 red=$(tput setaf 1 || echo "")
23 green=$(tput setaf 2 || echo "")
24
25 interactive="FALSE"
26 ping_site="8.8.8.8"
27 dnslookup_site="www.google.com"
28 post_config="TRUE"
29 debug="FALSE"
30
31 ovs_rpm_name=openvswitch-2.5.90-1.el7.centos.x86_64.rpm
32 ovs_kmod_rpm_name=openvswitch-kmod-2.5.90-1.el7.centos.x86_64.rpm
33
34 declare -i CNT
35 declare UNDERCLOUD
36 declare -A deploy_options_array
37 declare -a performance_options
38 declare -A NET_MAP
39
40 APEX_TMP_DIR=$(python3 -c "import tempfile; print(tempfile.mkdtemp())")
41 SSH_OPTIONS=(-o StrictHostKeyChecking=no -o GlobalKnownHostsFile=/dev/null -o UserKnownHostsFile=/dev/null -o LogLevel=error)
42 DEPLOY_OPTIONS=""
43 BASE=${BASE:-'/var/opt/opnfv'}
44 IMAGES=${IMAGES:-"$BASE/images"}
45 LIB=${LIB:-"$BASE/lib"}
46 OPNFV_NETWORK_TYPES="admin tenant external storage api"
47 ENV_FILE="opnfv-environment.yaml"
48
49 VM_CPUS=4
50 VM_RAM=8
51 VM_COMPUTES=1
52
53 # Netmap used to map networks to OVS bridge names
54 NET_MAP['admin']="br-admin"
55 NET_MAP['tenant']="br-tenant"
56 NET_MAP['external']="br-external"
57 NET_MAP['storage']="br-storage"
58 NET_MAP['api']="br-api"
59 ext_net_type="interface"
60 ip_address_family=4
61
62 # Libraries
63 lib_files=(
64 $LIB/common-functions.sh
65 $LIB/configure-deps-functions.sh
66 $LIB/parse-functions.sh
67 $LIB/virtual-setup-functions.sh
68 $LIB/undercloud-functions.sh
69 $LIB/overcloud-deploy-functions.sh
70 $LIB/post-install-functions.sh
71 $LIB/utility-functions.sh
72 $LIB/installer/onos/onos_gw_mac_update.sh
73 )
74 for lib_file in ${lib_files[@]}; do
75   if ! source $lib_file; then
76     echo -e "${red}ERROR: Failed to source $lib_file${reset}"
77     exit 1
78   fi
79 done
80
81 display_usage() {
82   echo -e "Usage:\n$0 [arguments] \n"
83   echo -e "   --deploy-settings | -d : Full path to deploy settings yaml file. Optional.  Defaults to null"
84   echo -e "   --inventory | -i : Full path to inventory yaml file. Required only for baremetal"
85   echo -e "   --net-settings | -n : Full path to network settings file. Optional."
86   echo -e "   --ping-site | -p : site to use to verify IP connectivity. Optional. Defaults to 8.8.8.8"
87   echo -e "   --dnslookup-site : site to use to verify DNS resolution. Optional. Defaults to www.google.com"
88   echo -e "   --virtual | -v : Virtualize overcloud nodes instead of using baremetal."
89   echo -e "   --no-post-config : disable Post Install configuration."
90   echo -e "   --debug : enable debug output."
91   echo -e "   --interactive : enable interactive deployment mode which requires user to confirm steps of deployment."
92   echo -e "   --virtual-cpus : Number of CPUs to use per Overcloud VM in a virtual deployment (defaults to 4)."
93   echo -e "   --virtual-computes : Number of Virtual Compute nodes to create and use during deployment (defaults to 1 for noha and 2 for ha)."
94   echo -e "   --virtual-default-ram : Amount of default RAM to use per Overcloud VM in GB (defaults to 8)."
95   echo -e "   --virtual-compute-ram : Amount of RAM to use per Overcloud Compute VM in GB (defaults to 8). Overrides --virtual-default-ram arg for computes"
96 }
97
98 ##translates the command line parameters into variables
99 ##params: $@ the entire command line is passed
100 ##usage: parse_cmd_line() "$@"
101 parse_cmdline() {
102   echo -e "\n\n${blue}This script is used to deploy the Apex Installer and Provision OPNFV Target System${reset}\n\n"
103   echo "Use -h to display help"
104
105   while [ "${1:0:1}" = "-" ]
106   do
107     case "$1" in
108         -h|--help)
109                 display_usage
110                 exit 0
111             ;;
112         -d|--deploy-settings)
113                 DEPLOY_SETTINGS_FILE=$2
114                 echo "Deployment Configuration file: $2"
115                 shift 2
116             ;;
117         -i|--inventory)
118                 INVENTORY_FILE=$2
119                 shift 2
120             ;;
121         -n|--net-settings)
122                 NETSETS=$2
123                 echo "Network Settings Configuration file: $2"
124                 shift 2
125             ;;
126         -e|--environment-file)
127                 ENV_FILE=$2
128                 echo "Base OOO Environment file: $2"
129                 shift 2
130             ;;
131         -p|--ping-site)
132                 ping_site=$2
133                 echo "Using $2 as the ping site"
134                 shift 2
135             ;;
136         --dnslookup-site)
137                 dnslookup_site=$2
138                 echo "Using $2 as the dnslookup site"
139                 shift 2
140             ;;
141         -v|--virtual)
142                 virtual="TRUE"
143                 echo "Executing a Virtual Deployment"
144                 shift 1
145             ;;
146         --no-post-config )
147                 post_config="FALSE"
148                 echo "Post install configuration disabled"
149                 shift 1
150             ;;
151         --debug )
152                 debug="TRUE"
153                 echo "Enable debug output"
154                 shift 1
155             ;;
156         --interactive )
157                 interactive="TRUE"
158                 echo "Interactive mode enabled"
159                 shift 1
160             ;;
161         --virtual-cpus )
162                 VM_CPUS=$2
163                 echo "Number of CPUs per VM set to $VM_CPUS"
164                 shift 2
165             ;;
166         --virtual-default-ram )
167                 VM_RAM=$2
168                 echo "Amount of Default RAM per VM set to $VM_RAM"
169                 shift 2
170             ;;
171         --virtual-computes )
172                 VM_COMPUTES=$2
173                 echo "Virtual Compute nodes set to $VM_COMPUTES"
174                 shift 2
175             ;;
176         --virtual-compute-ram )
177                 VM_COMPUTE_RAM=$2
178                 echo "Virtual Compute RAM set to $VM_COMPUTE_RAM"
179                 shift 2
180             ;;
181         *)
182                 display_usage
183                 exit 1
184             ;;
185     esac
186   done
187   sleep 2
188
189   if [[ -z "$NETSETS" ]]; then
190     echo -e "${red}ERROR: You must provide a network_settings file with -n.${reset}"
191     exit 1
192   fi
193
194   # inventory file usage validation
195   if [[ -n "$virtual" ]]; then
196       if [[ -n "$INVENTORY_FILE" ]]; then
197           echo -e "${red}ERROR: You should not specify an inventory file with virtual deployments${reset}"
198           exit 1
199       else
200           INVENTORY_FILE="$APEX_TMP_DIR/inventory-virt.yaml"
201       fi
202   elif [[ -z "$INVENTORY_FILE" ]]; then
203     echo -e "${red}ERROR: You must specify an inventory file for baremetal deployments! Exiting...${reset}"
204     exit 1
205   elif [[ ! -f "$INVENTORY_FILE" ]]; then
206     echo -e "{$red}ERROR: Inventory File: ${INVENTORY_FILE} does not exist! Exiting...${reset}"
207     exit 1
208   fi
209
210   if [[ -z "$DEPLOY_SETTINGS_FILE" || ! -f "$DEPLOY_SETTINGS_FILE" ]]; then
211     echo -e "${red}ERROR: Deploy Settings: ${DEPLOY_SETTINGS_FILE} does not exist! Exiting...${reset}"
212     exit 1
213   fi
214
215   if [[ ! -z "$NETSETS" && ! -f "$NETSETS" ]]; then
216     echo -e "${red}ERROR: Network Settings: ${NETSETS} does not exist! Exiting...${reset}"
217     exit 1
218   fi
219
220 }
221
222 main() {
223   parse_cmdline "$@"
224   if [ -n "$DEPLOY_SETTINGS_FILE" ]; then
225     echo -e "${blue}INFO: Parsing deploy settings file...${reset}"
226     parse_deploy_settings
227   fi
228   echo -e "${blue}INFO: Parsing network settings file...${reset}"
229   parse_network_settings
230   if ! configure_deps; then
231     echo -e "${red}Dependency Validation Failed, Exiting.${reset}"
232     exit 1
233   fi
234   #Correct the time on the server prior to launching any VMs
235   if ntpdate $ntp_server; then
236     hwclock --systohc
237   else
238     echo "${blue}WARNING: ntpdate failed to update the time on the server. ${reset}"
239   fi
240   setup_undercloud_vm
241   if [ "$virtual" == "TRUE" ]; then
242     setup_virtual_baremetal $VM_CPUS $VM_RAM
243   fi
244   parse_inventory_file
245   configure_undercloud
246   overcloud_deploy
247   if [ "$post_config" == "TRUE" ]; then
248     if ! configure_post_install; then
249       echo -e "${red}ERROR:Post Install Configuration Failed, Exiting.${reset}"
250       exit 1
251     else
252       echo -e "${blue}INFO: Post Install Configuration Complete${reset}"
253     fi
254   fi
255   if [[ "${deploy_options_array['sdn_controller']}" == 'onos' ]]; then
256     if ! onos_update_gw_mac ${external_cidr} ${external_gateway}; then
257       echo -e "${red}ERROR:ONOS Post Install Configuration Failed, Exiting.${reset}"
258       exit 1
259     else
260       echo -e "${blue}INFO: ONOS Post Install Configuration Complete${reset}"
261     fi
262   fi
263 }
264
265 main "$@"