2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
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 ##############################################################################
11 # Deploy script to install provisioning server for OPNFV Apex
12 # author: Dan Radez (dradez@redhat.com)
13 # author: Tim Rozet (trozet@redhat.com)
15 # Based on RDO Manager http://www.rdoproject.org
20 reset=$(tput sgr0 || echo "")
21 blue=$(tput setaf 4 || echo "")
22 red=$(tput setaf 1 || echo "")
23 green=$(tput setaf 2 || echo "")
27 dnslookup_site="www.google.com"
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
36 declare -A deploy_options_array
37 declare -a performance_options
40 # Backwards compat for old ENV Vars
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}"
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}"
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)
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"
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"
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
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}"
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"
110 ##translates the command line parameters into variables
111 ##params: $@ the entire command line is passed
112 ##usage: parse_cmd_line() "$@"
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"
117 while [ "${1:0:1}" = "-" ]
124 -d|--deploy-settings)
125 DEPLOY_SETTINGS_FILE=$2
126 echo "Deployment Configuration file: $2"
135 echo "Network Settings Configuration file: $2"
138 -e|--environment-file)
140 echo "Base OOO Environment file: $2"
145 echo "Using $2 as the ping site"
150 echo "Using $2 as the dnslookup site"
155 echo "Executing a Virtual Deployment"
160 echo "Post install configuration disabled"
165 echo "Enable debug output"
170 echo "Interactive mode enabled"
175 echo "Number of CPUs per VM set to $VM_CPUS"
178 --virtual-default-ram )
180 echo "Amount of Default RAM per VM set to $VM_RAM"
185 echo "Virtual Compute nodes set to $VM_COMPUTES"
188 --virtual-compute-ram )
190 echo "Virtual Compute RAM set to $VM_COMPUTE_RAM"
201 if [[ -z "$NETSETS" ]]; then
202 echo -e "${red}ERROR: You must provide a network_settings file with -n.${reset}"
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}"
212 INVENTORY_FILE="$APEX_TMP_DIR/inventory-virt.yaml"
214 elif [[ -z "$INVENTORY_FILE" ]]; then
215 echo -e "${red}ERROR: You must specify an inventory file for baremetal deployments! Exiting...${reset}"
217 elif [[ ! -f "$INVENTORY_FILE" ]]; then
218 echo -e "{$red}ERROR: Inventory File: ${INVENTORY_FILE} does not exist! Exiting...${reset}"
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}"
227 if [[ ! -z "$NETSETS" && ! -f "$NETSETS" ]]; then
228 echo -e "${red}ERROR: Network Settings: ${NETSETS} does not exist! Exiting...${reset}"
236 if [ -n "$DEPLOY_SETTINGS_FILE" ]; then
237 echo -e "${blue}INFO: Parsing deploy settings file...${reset}"
238 parse_deploy_settings
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}"
246 #Correct the time on the server prior to launching any VMs
247 if ntpdate $ntp_server; then
250 echo "${blue}WARNING: ntpdate failed to update the time on the server. ${reset}"
253 if [ "$virtual" == "TRUE" ]; then
254 setup_virtual_baremetal $VM_CPUS $VM_RAM
259 if [ "$post_config" == "TRUE" ]; then
260 if ! configure_post_install; then
261 echo -e "${red}ERROR:Post Install Configuration Failed, Exiting.${reset}"
264 echo -e "${blue}INFO: Post Install Configuration Complete${reset}"
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}"
272 echo -e "${blue}INFO: ONOS Post Install Configuration Complete${reset}"