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