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