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