Merge "Open additional ports for OpenDaylight services"
[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-default-ram : Amount of default RAM to use per Overcloud VM in GB (defaults to 8)."
107   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"
108 }
109
110 ##translates the command line parameters into variables
111 ##params: $@ the entire command line is passed
112 ##usage: parse_cmd_line() "$@"
113 parse_cmdline() {
114   echo -e "\n\n${blue}This script is used to deploy the Apex Installer and Provision OPNFV Target System${reset}\n\n"
115   echo "Use -h to display help"
116
117   while [ "${1:0:1}" = "-" ]
118   do
119     case "$1" in
120         -h|--help)
121                 display_usage
122                 exit 0
123             ;;
124         -d|--deploy-settings)
125                 DEPLOY_SETTINGS_FILE=$2
126                 echo "Deployment Configuration file: $2"
127                 shift 2
128             ;;
129         -i|--inventory)
130                 INVENTORY_FILE=$2
131                 shift 2
132             ;;
133         -n|--net-settings)
134                 NETSETS=$2
135                 echo "Network Settings Configuration file: $2"
136                 shift 2
137             ;;
138         -e|--environment-file)
139                 ENV_FILE=$2
140                 echo "Base OOO Environment file: $2"
141                 shift 2
142             ;;
143         -p|--ping-site)
144                 ping_site=$2
145                 echo "Using $2 as the ping site"
146                 shift 2
147             ;;
148         --dnslookup-site)
149                 dnslookup_site=$2
150                 echo "Using $2 as the dnslookup site"
151                 shift 2
152             ;;
153         -v|--virtual)
154                 virtual="TRUE"
155                 echo "Executing a Virtual Deployment"
156                 shift 1
157             ;;
158         --no-post-config )
159                 post_config="FALSE"
160                 echo "Post install configuration disabled"
161                 shift 1
162             ;;
163         --debug )
164                 debug="TRUE"
165                 echo "Enable debug output"
166                 shift 1
167             ;;
168         --interactive )
169                 interactive="TRUE"
170                 echo "Interactive mode enabled"
171                 shift 1
172             ;;
173         --virtual-cpus )
174                 VM_CPUS=$2
175                 echo "Number of CPUs per VM set to $VM_CPUS"
176                 shift 2
177             ;;
178         --virtual-default-ram )
179                 VM_RAM=$2
180                 echo "Amount of Default RAM per VM set to $VM_RAM"
181                 shift 2
182             ;;
183         --virtual-computes )
184                 VM_COMPUTES=$2
185                 echo "Virtual Compute nodes set to $VM_COMPUTES"
186                 shift 2
187             ;;
188         --virtual-compute-ram )
189                 VM_COMPUTE_RAM=$2
190                 echo "Virtual Compute RAM set to $VM_COMPUTE_RAM"
191                 shift 2
192             ;;
193         *)
194                 display_usage
195                 exit 1
196             ;;
197     esac
198   done
199   sleep 2
200
201   if [[ -z "$NETSETS" ]]; then
202     echo -e "${red}ERROR: You must provide a network_settings file with -n.${reset}"
203     exit 1
204   fi
205
206   # inventory file usage validation
207   if [[ -n "$virtual" ]]; then
208       if [[ -n "$INVENTORY_FILE" ]]; then
209           echo -e "${red}ERROR: You should not specify an inventory file with virtual deployments${reset}"
210           exit 1
211       else
212           INVENTORY_FILE="$APEX_TMP_DIR/inventory-virt.yaml"
213       fi
214   elif [[ -z "$INVENTORY_FILE" ]]; then
215     echo -e "${red}ERROR: You must specify an inventory file for baremetal deployments! Exiting...${reset}"
216     exit 1
217   elif [[ ! -f "$INVENTORY_FILE" ]]; then
218     echo -e "{$red}ERROR: Inventory File: ${INVENTORY_FILE} does not exist! Exiting...${reset}"
219     exit 1
220   fi
221
222   if [[ -z "$DEPLOY_SETTINGS_FILE" || ! -f "$DEPLOY_SETTINGS_FILE" ]]; then
223     echo -e "${red}ERROR: Deploy Settings: ${DEPLOY_SETTINGS_FILE} does not exist! Exiting...${reset}"
224     exit 1
225   fi
226
227   if [[ ! -z "$NETSETS" && ! -f "$NETSETS" ]]; then
228     echo -e "${red}ERROR: Network Settings: ${NETSETS} does not exist! Exiting...${reset}"
229     exit 1
230   fi
231
232 }
233
234 main() {
235   parse_cmdline "$@"
236   if [ -n "$DEPLOY_SETTINGS_FILE" ]; then
237     echo -e "${blue}INFO: Parsing deploy settings file...${reset}"
238     parse_deploy_settings
239   fi
240   echo -e "${blue}INFO: Parsing network settings file...${reset}"
241   parse_network_settings
242   if ! configure_deps; then
243     echo -e "${red}Dependency Validation Failed, Exiting.${reset}"
244     exit 1
245   fi
246   #Correct the time on the server prior to launching any VMs
247   if ntpdate $ntp_server; then
248     hwclock --systohc
249   else
250     echo "${blue}WARNING: ntpdate failed to update the time on the server. ${reset}"
251   fi
252   setup_undercloud_vm
253   if [ "$virtual" == "TRUE" ]; then
254     setup_virtual_baremetal $VM_CPUS $VM_RAM
255   fi
256   parse_inventory_file
257   configure_undercloud
258   overcloud_deploy
259   if [ "$post_config" == "TRUE" ]; then
260     if ! configure_post_install; then
261       echo -e "${red}ERROR:Post Install Configuration Failed, Exiting.${reset}"
262       exit 1
263     else
264       echo -e "${blue}INFO: Post Install Configuration Complete${reset}"
265     fi
266   fi
267   if [[ "${deploy_options_array['sdn_controller']}" == 'onos' ]]; then
268     if ! onos_update_gw_mac ${external_cidr} ${external_gateway}; then
269       echo -e "${red}ERROR:ONOS Post Install Configuration Failed, Exiting.${reset}"
270       exit 1
271     else
272       echo -e "${blue}INFO: ONOS Post Install Configuration Complete${reset}"
273     fi
274   fi
275 }
276
277 main "$@"