Fixes issue with deploy copying from /tmp and clean bailing early
[genesis.git] / foreman / ci / deploy.sh
1 #!/usr/bin/env bash
2
3 #Deploy script to install provisioning server for Foreman/QuickStack
4 #author: Tim Rozet (trozet@redhat.com)
5 #
6 #Uses Vagrant and VirtualBox
7 #VagrantFile uses bootsrap.sh which Installs Khaleesi
8 #Khaleesi will install and configure Foreman/QuickStack
9 #
10 #Pre-requisties:
11 #Supports 3 or 4 network interface configuration
12 #Target system must be RPM based
13 #Ensure the host's kernel is up to date (yum update)
14 #Provisioned nodes expected to have following order of network connections (note: not all have to exist, but order is maintained):
15 #eth0- admin network
16 #eth1- private network (+storage network in 3 NIC config)
17 #eth2- public network
18 #eth3- storage network
19 #script assumes /24 subnet mask
20
21 ##VARS
22 reset=`tput sgr0`
23 blue=`tput setaf 4`
24 red=`tput setaf 1`
25 green=`tput setaf 2`
26
27 declare -A interface_arr
28 declare -A controllers_ip_arr
29 declare -A admin_ip_arr
30 declare -A public_ip_arr
31
32 vm_dir=/var/opt/opnfv
33 script=`realpath $0`
34 ##END VARS
35
36 ##FUNCTIONS
37 display_usage() {
38   echo -e "\n\n${blue}This script is used to deploy Foreman/QuickStack Installer and Provision OPNFV Target System${reset}\n\n"
39   echo -e "\n${green}Make sure you have the latest kernel installed before running this script! (yum update kernel +reboot)${reset}\n"
40   echo -e "\nUsage:\n$0 [arguments] \n"
41   echo -e "\n   -no_parse : No variable parsing into config. Flag. \n"
42   echo -e "\n   -base_config : Full path of settings file to parse. Optional.  Will provide a new base settings file rather than the default.  Example:  -base_config /opt/myinventory.yml \n"
43   echo -e "\n   -virtual : Node virtualization instead of baremetal. Flag. \n"
44   echo -e "\n   -enable_virtual_dhcp : Run dhcp server instead of using static IPs.  Use this with -virtual only. \n"
45   echo -e "\n   -static_ip_range : static IP range to define when using virtual and when dhcp is not being used (default), must at least a 20 IP block.  Format: '192.168.1.1,192.168.1.20' \n"
46   echo -e "\n   -ping_site : site to use to verify IP connectivity from the VM when -virtual is used.  Format: -ping_site www.blah.com \n"
47   echo -e "\n   -floating_ip_count : number of IP address from the public range to be used for floating IP. Default is 20.\n"
48   echo -e "\n   -admin_nic : Baremetal NIC for the admin network.  Required if other "nic" arguments are used.  \
49 Not applicable with -virtual.  Example: -admin_nic em1"
50   echo -e "\n   -private_nic : Baremetal NIC for the private network.  Required if other "nic" arguments are used.  \
51 Not applicable with -virtual.  Example: -private_nic em2"
52   echo -e "\n   -public_nic : Baremetal NIC for the public network.  Required if other "nic" arguments are used.  \
53 Can also be used with -virtual.  Example: -public_nic em3"
54   echo -e "\n   -storage_nic : Baremetal NIC for the storage network.  Optional.  Not applicable with -virtual. \
55 Private NIC will be used for storage if not specified. Example: -storage_nic em4"
56 }
57
58 ##verify vm dir exists
59 ##params: none
60 function verify_vm_dir {
61   if [ -d "$vm_dir" ]; then
62     echo -e "\n\n${red}ERROR: VM Directory: $vm_dir already exists.  Environment not clean.  Please use clean.sh.  Exiting${reset}\n\n"
63     exit 1
64   else
65     mkdir -p $vm_dir
66   fi
67
68   chmod 700 $vm_dir
69
70   if [ ! -d $vm_dir ]; then
71     echo -e "\n\n${red}ERROR: Unable to create VM Directory: $vm_dir  Exiting${reset}\n\n"
72     exit -1
73   fi
74 }
75
76 ##find ip of interface
77 ##params: interface name
78 function find_ip {
79   ip addr show $1 | grep -Eo '^\s+inet\s+[\.0-9]+' | awk '{print $2}'
80 }
81
82 ##finds subnet of ip and netmask
83 ##params: ip, netmask
84 function find_subnet {
85   IFS=. read -r i1 i2 i3 i4 <<< "$1"
86   IFS=. read -r m1 m2 m3 m4 <<< "$2"
87   printf "%d.%d.%d.%d\n" "$((i1 & m1))" "$((i2 & m2))" "$((i3 & m3))" "$((i4 & m4))"
88 }
89
90 ##verify subnet has at least n IPs
91 ##params: subnet mask, n IPs
92 function verify_subnet_size {
93   IFS=. read -r i1 i2 i3 i4 <<< "$1"
94   num_ips_required=$2
95
96   ##this function assumes you would never need more than 254
97   ##we check here to make sure
98   if [ "$num_ips_required" -ge 254 ]; then
99     echo -e "\n\n${red}ERROR: allocating more than 254 IPs is unsupported...Exiting${reset}\n\n"
100     return 1
101   fi
102
103   ##we just return if 3rd octet is not 255
104   ##because we know the subnet is big enough
105   if [ "$i3" -ne 255 ]; then
106     return 0
107   elif [ $((254-$i4)) -ge "$num_ips_required" ]; then
108     return 0
109   else
110     echo -e "\n\n${red}ERROR: Subnet is too small${reset}\n\n"
111     return 1
112   fi
113 }
114
115 ##finds last usable ip (broadcast minus 1) of a subnet from an IP and netmask
116 ## Warning: This function only works for IPv4 at the moment.
117 ##params: ip, netmask
118 function find_last_ip_subnet {
119   IFS=. read -r i1 i2 i3 i4 <<< "$1"
120   IFS=. read -r m1 m2 m3 m4 <<< "$2"
121   IFS=. read -r s1 s2 s3 s4 <<< "$((i1 & m1)).$((i2 & m2)).$((i3 & m3)).$((i4 & m4))"
122   printf "%d.%d.%d.%d\n" "$((255 - $m1 + $s1))" "$((255 - $m2 + $s2))" "$((255 - $m3 + $s3))" "$((255 - $m4 + $s4 - 1))"
123 }
124
125 ##increments subnet by a value
126 ##params: ip, value
127 ##assumes low value
128 function increment_subnet {
129   IFS=. read -r i1 i2 i3 i4 <<< "$1"
130   printf "%d.%d.%d.%d\n" "$i1" "$i2" "$i3" "$((i4 | $2))"
131 }
132
133
134 ##finds netmask of interface
135 ##params: interface
136 ##returns long format 255.255.x.x
137 function find_netmask {
138   ifconfig $1 | grep -Eo 'netmask\s+[\.0-9]+' | awk '{print $2}'
139 }
140
141 ##finds short netmask of interface
142 ##params: interface
143 ##returns short format, ex: /21
144 function find_short_netmask {
145   echo "/$(ip addr show $1 | grep -Eo '^\s+inet\s+[\/\.0-9]+' | awk '{print $2}' | cut -d / -f2)"
146 }
147
148 ##increments next IP
149 ##params: ip
150 ##assumes a /24 subnet
151 function next_ip {
152   baseaddr="$(echo $1 | cut -d. -f1-3)"
153   lsv="$(echo $1 | cut -d. -f4)"
154   if [ "$lsv" -ge 254 ]; then
155     return 1
156   fi
157   ((lsv++))
158   echo $baseaddr.$lsv
159 }
160
161 ##subtracts a value from an IP address
162 ##params: last ip, ip_count
163 ##assumes ip_count is less than the last octect of the address
164 subtract_ip() {
165   IFS=. read -r i1 i2 i3 i4 <<< "$1"
166   ip_count=$2
167   if [ $i4 -lt $ip_count ]; then
168     echo -e "\n\n${red}ERROR: Can't subtract $ip_count from IP address $1  Exiting${reset}\n\n"
169     exit 1
170   fi
171   printf "%d.%d.%d.%d\n" "$i1" "$i2" "$i3" "$((i4 - $ip_count ))"
172 }
173
174 ##removes the network interface config from Vagrantfile
175 ##params: interface
176 ##assumes you are in the directory of Vagrantfile
177 function remove_vagrant_network {
178   sed -i 's/^.*'"$1"'.*$//' Vagrantfile
179 }
180
181 ##check if IP is in use
182 ##params: ip
183 ##ping ip to get arp entry, then check arp
184 function is_ip_used {
185   ping -c 5 $1 > /dev/null 2>&1
186   arp -n | grep "$1 " | grep -iv incomplete > /dev/null 2>&1
187 }
188
189 ##find next usable IP
190 ##params: ip
191 function next_usable_ip {
192   new_ip=$(next_ip $1)
193   while [ "$new_ip" ]; do
194     if ! is_ip_used $new_ip; then
195       echo $new_ip
196       return 0
197     fi
198     new_ip=$(next_ip $new_ip)
199   done
200   return 1
201 }
202
203 ##increment ip by value
204 ##params: ip, amount to increment by
205 ##increment_ip $next_private_ip 10
206 function increment_ip {
207   baseaddr="$(echo $1 | cut -d. -f1-3)"
208   lsv="$(echo $1 | cut -d. -f4)"
209   incrval=$2
210   lsv=$((lsv+incrval))
211   if [ "$lsv" -ge 254 ]; then
212     return 1
213   fi
214   echo $baseaddr.$lsv
215 }
216
217 ##translates yaml into variables
218 ##params: filename, prefix (ex. "config_")
219 ##usage: parse_yaml opnfv_ksgen_settings.yml "config_"
220 parse_yaml() {
221    local prefix=$2
222    local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
223    sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \
224         -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p"  $1 |
225    awk -F$fs '{
226       indent = length($1)/2;
227       vname[indent] = $2;
228       for (i in vname) {if (i > indent) {delete vname[i]}}
229       if (length($3) > 0) {
230          vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
231          printf("%s%s%s=\"%s\"\n", "'$prefix'",vn, $2, $3);
232       }
233    }'
234 }
235
236 ##translates the command line paramaters into variables
237 ##params: $@ the entire command line is passed
238 ##usage: parse_cmd_line() "$@"
239 parse_cmdline() {
240   if [[ ( $1 == "--help") ||  $1 == "-h" ]]; then
241     display_usage
242     exit 0
243   fi
244
245   echo -e "\n\n${blue}This script is used to deploy Foreman/QuickStack Installer and Provision OPNFV Target System${reset}\n\n"
246   echo "Use -h to display help"
247   sleep 2
248
249   while [ "`echo $1 | cut -c1`" = "-" ]
250   do
251     echo $1
252     case "$1" in
253         -base_config)
254                 base_config=$2
255                 shift 2
256             ;;
257         -no_parse)
258                 no_parse="TRUE"
259                 shift 1
260             ;;
261         -virtual)
262                 virtual="TRUE"
263                 shift 1
264             ;;
265         -enable_virtual_dhcp)
266                 enable_virtual_dhcp="TRUE"
267                 shift 1
268             ;;
269         -static_ip_range)
270                 static_ip_range=$2
271                 shift 2
272             ;;
273         -ping_site)
274                 ping_site=$2
275                 shift 2
276             ;;
277         -floating_ip_count)
278                 floating_ip_count=$2
279                 shift 2
280             ;;
281         -admin_nic)
282                 admin_nic=$2
283                 shift 2
284                 nic_arg_flag=1
285             ;;
286         -private_nic)
287                 private_nic=$2
288                 shift 2
289                 nic_arg_flag=1
290             ;;
291         -public_nic)
292                 public_nic=$2
293                 shift 2
294                 nic_arg_flag=1
295             ;;
296         -storage_nic)
297                 storage_nic=$2
298                 shift 2
299                 nic_arg_flag=1
300             ;;
301         *)
302                 display_usage
303                 exit 1
304             ;;
305     esac
306   done
307
308   if [ ! -z "$enable_virtual_dhcp" ] && [ ! -z "$static_ip_range" ]; then
309     echo -e "\n\n${red}ERROR: Incorrect Usage.  Static IP range cannot be set when using DHCP!.  Exiting${reset}\n\n"
310     exit 1
311   fi
312
313   if [ -z "$virtual" ]; then
314     if [ ! -z "$enable_virtual_dhcp" ]; then
315       echo -e "\n\n${red}ERROR: Incorrect Usage.  enable_virtual_dhcp can only be set when using -virtual!.  Exiting${reset}\n\n"
316       exit 1
317     elif [ ! -z "$static_ip_range" ]; then
318       echo -e "\n\n${red}ERROR: Incorrect Usage.  static_ip_range can only be set when using -virtual!.  Exiting${reset}\n\n"
319       exit 1
320     fi
321   fi
322
323   if [ -z "$floating_ip_count" ]; then
324     floating_ip_count=20
325   fi
326
327   ##Validate nic args
328   if [[ $nic_arg_flag -eq 1 ]]; then
329     if [ -z "$virtual" ]; then
330       for nic_type in admin_nic private_nic public_nic; do
331         eval "nic_value=\$$nic_type"
332         if [ -z "$nic_value" ]; then
333           echo "${red}$nic_type is empty or not defined.  Required when other nic args are given!${reset}"
334           exit 1
335         fi
336         interface_ip=$(find_ip $nic_value)
337         if [ ! "$interface_ip" ]; then
338           echo "${red}$nic_value does not have an IP address! Exiting... ${reset}"
339           exit 1
340         fi
341       done
342     else
343       ##if virtual only public_nic should be specified
344       for nic_type in admin_nic private_nic storage_nic; do
345         eval "nic_value=\$$nic_type"
346         if [ ! -z "$nic_value" ]; then
347           echo "${red}$nic_type is not a valid argument using -virtual.  Please only specify public_nic!${reset}"
348           exit 1
349         fi
350       done
351
352       interface_ip=$(find_ip $public_nic)
353       if [ ! "$interface_ip" ]; then
354         echo "${red}Public NIC: $public_nic does not have an IP address! Exiting... ${reset}"
355         exit 1
356       fi
357     fi
358   fi
359 }
360
361 ##disable selinux
362 ##params: none
363 ##usage: disable_selinux()
364 disable_selinux() {
365   /sbin/setenforce 0
366 }
367
368 ##Install the EPEL repository and additional packages
369 ##params: none
370 ##usage: install_EPEL()
371 install_EPEL() {
372   # Install EPEL repo for access to many other yum repos
373   # Major version is pinned to force some consistency for Arno
374   yum install -y epel-release-7*
375
376   # Install other required packages
377   # Major versions are pinned to force some consistency for Arno
378   if ! yum install -y binutils-2* gcc-4* make-3* patch-2* libgomp-4* glibc-headers-2* glibc-devel-2* kernel-headers-3* kernel-devel-3* dkms-2* psmisc-22*; then
379     printf '%s\n' 'deploy.sh: Unable to install depdency packages' >&2
380     exit 1
381   fi
382 }
383
384 ##Download and install virtual box
385 ##params: none
386 ##usage: install_vbox()
387 install_vbox() {
388   ##install VirtualBox repo
389   if cat /etc/*release | grep -i "Fedora release"; then
390     vboxurl=http://download.virtualbox.org/virtualbox/rpm/fedora/\$releasever/\$basearch
391   else
392     vboxurl=http://download.virtualbox.org/virtualbox/rpm/el/\$releasever/\$basearch
393   fi
394
395   cat > /etc/yum.repos.d/virtualbox.repo << EOM
396 [virtualbox]
397 name=Oracle Linux / RHEL / CentOS-\$releasever / \$basearch - VirtualBox
398 baseurl=$vboxurl
399 enabled=1
400 gpgcheck=1
401 gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc
402 skip_if_unavailable = 1
403 keepcache = 0
404 EOM
405
406   ##install VirtualBox
407   if ! yum list installed | grep -i virtualbox; then
408     if ! yum -y install VirtualBox-4.3; then
409       printf '%s\n' 'deploy.sh: Unable to install virtualbox package' >&2
410       exit 1
411     fi
412   fi
413
414   ##install kmod-VirtualBox
415   if ! lsmod | grep vboxdrv; then
416     sudo /etc/init.d/vboxdrv setup
417     if ! lsmod | grep vboxdrv; then
418       printf '%s\n' 'deploy.sh: Unable to install kernel module for virtualbox' >&2
419       exit 1
420     fi
421   else
422     printf '%s\n' 'deploy.sh: Skipping kernel module for virtualbox.  Already Installed'
423   fi
424 }
425
426 ##install Ansible using yum
427 ##params: none
428 ##usage: install_ansible()
429 install_ansible() {
430   if ! yum list installed | grep -i ansible; then
431     if ! yum -y install ansible-1*; then
432       printf '%s\n' 'deploy.sh: Unable to install Ansible package' >&2
433       exit 1
434     fi
435   fi
436 }
437
438 ##install Vagrant RPM directly with the bintray.com site
439 ##params: none
440 ##usage: install_vagrant()
441 install_vagrant() {
442   if ! rpm -qa | grep vagrant; then
443     if ! rpm -Uvh https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.2_x86_64.rpm; then
444       printf '%s\n' 'deploy.sh: Unable to install vagrant package' >&2
445       exit 1
446     fi
447   else
448     printf '%s\n' 'deploy.sh: Skipping Vagrant install as it is already installed.'
449   fi
450
451   ##add centos 7 box to vagrant
452   if ! vagrant box list | grep opnfv/centos-7.0; then
453     if ! vagrant box add opnfv/centos-7.0 --provider virtualbox; then
454       printf '%s\n' 'deploy.sh: Unable to download centos7 box for Vagrant' >&2
455       exit 1
456     fi
457   else
458     printf '%s\n' 'deploy.sh: Skipping Vagrant box add as centos-7.0 is already installed.'
459   fi
460
461   ##install workaround for centos7
462   if ! vagrant plugin list | grep vagrant-centos7_fix; then
463     if ! vagrant plugin install vagrant-centos7_fix; then
464       printf '%s\n' 'deploy.sh: Warning: unable to install vagrant centos7 workaround' >&2
465     fi
466   else
467     printf '%s\n' 'deploy.sh: Skipping Vagrant plugin as centos7 workaround is already installed.'
468   fi
469 }
470
471
472 ##remove bgs vagrant incase it wasn't cleaned up
473 ##params: none
474 ##usage: clean_tmp()
475 clean_tmp() {
476   rm -rf $vm_dir/foreman_vm
477 }
478
479 ##clone genesis and move to node vm dir
480 ##params: destination directory
481 ##usage: clone_bgs /tmp/myvm/
482 clone_bgs() {
483   script_dir="`dirname "$script"`"
484   cp -fr $script_dir/ $1
485   cp -fr $script_dir/../../common/puppet-opnfv $1
486 }
487
488 ##validates the network settings and update VagrantFile with network settings
489 ##params: none
490 ##usage: configure_network()
491 configure_network() {
492   cd $vm_dir/foreman_vm
493
494   ##if nic_arg_flag is set, then we don't figure out
495   ##NICs dynamically
496   if [[ $nic_arg_flag -eq 1 ]]; then
497     echo "${blue}Static Network Interfaces Defined.  Updating Vagrantfile...${reset}"
498     if [ $virtual ]; then
499       nic_list="$public_nic"
500     elif [ -z "$storage_nic" ]; then
501       echo "${blue}storage_nic not defined, will combine storage into private VLAN ${reset}"
502       nic_list="$admin_nic $private_nic $public_nic"
503     else
504       nic_list="$admin_nic $private_nic $public_nic $storage_nic"
505     fi
506     nic_array=( $nic_list )
507     output=$nic_list
508   else
509     echo "${blue}Detecting network configuration...${reset}"
510     ##detect host 1 or 3 interface configuration
511     #output=`ip link show | grep -E "^[0-9]" | grep -Ev ": lo|tun|virbr|vboxnet" | awk '{print $2}' | sed 's/://'`
512     output=`/bin/ls -l /sys/class/net | tail -n +2 | grep -v virtual | cut -d " " -f9`
513   fi
514
515   if [ ! "$output" ]; then
516     printf '%s\n' 'deploy.sh: Unable to detect interfaces to bridge to' >&2
517     exit 1
518   fi
519
520   ##virtual we only find 1 interface
521   if [ $virtual ]; then
522     if [ ! -z "${nic_array[0]}" ]; then
523       echo "${blue}Public Interface specified: ${nic_array[0]}${reset}"
524       this_default_gw_interface=${nic_array[0]}
525     else
526       ##find interface with default gateway
527       this_default_gw=$(ip route | grep default | awk '{print $3}')
528       echo "${blue}Default Gateway: $this_default_gw ${reset}"
529       this_default_gw_interface=$(ip route get $this_default_gw | awk '{print $3}')
530     fi
531
532     ##find interface IP, make sure its valid
533     interface_ip=$(find_ip $this_default_gw_interface)
534     if [ ! "$interface_ip" ]; then
535       echo "${red}Interface ${this_default_gw_interface} does not have an IP: $interface_ip ! Exiting ${reset}"
536       exit 1
537     fi
538
539     ##set variable info
540     if [ ! -z "$static_ip_range" ]; then
541       new_ip=$(echo $static_ip_range | cut -d , -f1)
542     else
543       new_ip=$(next_usable_ip $interface_ip)
544       if [ ! "$new_ip" ]; then
545         echo "${red} Cannot find next IP on interface ${this_default_gw_interface} new_ip: $new_ip ! Exiting ${reset}"
546         exit 1
547       fi
548     fi
549     interface=$this_default_gw_interface
550     public_interface=$interface
551     interface_arr[$interface]=2
552     interface_ip_arr[2]=$new_ip
553     subnet_mask=$(find_netmask $interface)
554     public_subnet_mask=$subnet_mask
555     public_short_subnet_mask=$(find_short_netmask $interface)
556
557     if ! verify_subnet_size $public_subnet_mask 25; then
558       echo "${red} Not enough IPs in public subnet: $interface_ip_arr[2] ${public_subnet_mask}.  Need at least 25 IPs.  Please resize subnet! Exiting ${reset}"
559       exit 1
560     fi
561
562     ##set that interface to be public
563     sed -i 's/^.*eth_replace2.*$/  config.vm.network "public_network", ip: '\""$new_ip"\"', bridge: '\'"$interface"\'', netmask: '\""$subnet_mask"\"'/' Vagrantfile
564     if_counter=1
565   else
566     ##find number of interfaces with ip and substitute in VagrantFile
567     if_counter=0
568     for interface in ${output}; do
569
570       if [ "$if_counter" -ge 4 ]; then
571         break
572       fi
573       interface_ip=$(find_ip $interface)
574       if [ ! "$interface_ip" ]; then
575         continue
576       fi
577       new_ip=$(next_usable_ip $interface_ip)
578       if [ ! "$new_ip" ]; then
579         continue
580       fi
581       interface_arr[$interface]=$if_counter
582       interface_ip_arr[$if_counter]=$new_ip
583       subnet_mask=$(find_netmask $interface)
584       if [ "$if_counter" -eq 0 ]; then
585         admin_subnet_mask=$subnet_mask
586         if ! verify_subnet_size $admin_subnet_mask 5; then
587           echo "${red} Not enough IPs in admin subnet: ${interface_ip_arr[$if_counter]} ${admin_subnet_mask}.  Need at least 5 IPs.  Please resize subnet! Exiting ${reset}"
588           exit 1
589         fi
590
591       elif [ "$if_counter" -eq 1 ]; then
592         private_subnet_mask=$subnet_mask
593         private_short_subnet_mask=$(find_short_netmask $interface)
594
595         if ! verify_subnet_size $private_subnet_mask 15; then
596           echo "${red} Not enough IPs in private subnet: ${interface_ip_arr[$if_counter]} ${private_subnet_mask}.  Need at least 15 IPs.  Please resize subnet! Exiting ${reset}"
597           exit 1
598         fi
599       elif [ "$if_counter" -eq 2 ]; then
600         public_subnet_mask=$subnet_mask
601         public_short_subnet_mask=$(find_short_netmask $interface)
602
603         if ! verify_subnet_size $public_subnet_mask 25; then
604           echo "${red} Not enough IPs in public subnet: ${interface_ip_arr[$if_counter]} ${public_subnet_mask}.  Need at least 25 IPs.  Please resize subnet! Exiting ${reset}"
605           exit 1
606         fi
607       elif [ "$if_counter" -eq 3 ]; then
608         storage_subnet_mask=$subnet_mask
609
610         if ! verify_subnet_size $storage_subnet_mask 10; then
611           echo "${red} Not enough IPs in storage subnet: ${interface_ip_arr[$if_counter]} ${storage_subnet_mask}.  Need at least 10 IPs.  Please resize subnet! Exiting ${reset}"
612           exit 1
613         fi
614       else
615         echo "${red}ERROR: interface counter outside valid range of 0 to 3: $if_counter ! ${reset}"
616         exit 1
617       fi
618       sed -i 's/^.*eth_replace'"$if_counter"'.*$/  config.vm.network "public_network", ip: '\""$new_ip"\"', bridge: '\'"$interface"\'', netmask: '\""$subnet_mask"\"'/' Vagrantfile
619       ((if_counter++))
620     done
621   fi
622   ##now remove interface config in Vagrantfile for 1 node
623   ##if 1, 3, or 4 interfaces set deployment type
624   ##if 2 interfaces remove 2nd interface and set deployment type
625   if [[ "$if_counter" == 1 || "$if_counter" == 2 ]]; then
626     if [ $virtual ]; then
627       deployment_type="single_network"
628       echo "${blue}Single network detected for Virtual deployment...converting to three_network with internal networks! ${reset}"
629       private_internal_ip=155.1.2.2
630       admin_internal_ip=156.1.2.2
631       private_subnet_mask=255.255.255.0
632       private_short_subnet_mask=/24
633       interface_ip_arr[1]=$private_internal_ip
634       interface_ip_arr[0]=$admin_internal_ip
635       admin_subnet_mask=255.255.255.0
636       admin_short_subnet_mask=/24
637       sed -i 's/^.*eth_replace1.*$/  config.vm.network "private_network", virtualbox__intnet: "my_private_network", ip: '\""$private_internal_ip"\"', netmask: '\""$private_subnet_mask"\"'/' Vagrantfile
638       sed -i 's/^.*eth_replace0.*$/  config.vm.network "private_network", virtualbox__intnet: "my_admin_network", ip: '\""$admin_internal_ip"\"', netmask: '\""$private_subnet_mask"\"'/' Vagrantfile
639       remove_vagrant_network eth_replace3
640       deployment_type=three_network
641     else
642        echo "${blue}Single network or 2 network detected for baremetal deployment.  This is unsupported! Exiting. ${reset}"
643        exit 1
644     fi
645   elif [ "$if_counter" == 3 ]; then
646     deployment_type="three_network"
647     remove_vagrant_network eth_replace3
648   else
649     deployment_type="multi_network"
650   fi
651
652   echo "${blue}Network detected: ${deployment_type}! ${reset}"
653
654   if [ $virtual ]; then
655     if [ -z "$enable_virtual_dhcp" ]; then
656       sed -i 's/^.*disable_dhcp_flag =.*$/  disable_dhcp_flag = true/' Vagrantfile
657       if [ $static_ip_range ]; then
658         ##verify static range is at least 20 IPs
659         static_ip_range_begin=$(echo $static_ip_range | cut -d , -f1)
660         static_ip_range_end=$(echo $static_ip_range | cut -d , -f2)
661         ##verify range is at least 20 ips
662         ##assumes less than 255 range pool
663         begin_octet=$(echo $static_ip_range_begin | cut -d . -f4)
664         end_octet=$(echo $static_ip_range_end | cut -d . -f4)
665         ip_count=$((end_octet-begin_octet+1))
666         if [ "$ip_count" -lt 20 ]; then
667           echo "${red}Static range is less than 20 ips: ${ip_count}, exiting  ${reset}"
668           exit 1
669         else
670           echo "${blue}Static IP range is size $ip_count ${reset}"
671         fi
672       fi
673     fi
674   fi
675
676   if route | grep default; then
677     echo "${blue}Default Gateway Detected ${reset}"
678     host_default_gw=$(ip route | grep default | awk '{print $3}')
679     echo "${blue}Default Gateway: $host_default_gw ${reset}"
680     default_gw_interface=$(ip route get $host_default_gw | awk '{print $3}')
681     case "${interface_arr[$default_gw_interface]}" in
682       0)
683         echo "${blue}Default Gateway Detected on Admin Interface!${reset}"
684         sed -i 's/^.*default_gw =.*$/  default_gw = '\""$host_default_gw"\"'/' Vagrantfile
685         node_default_gw=$host_default_gw
686         ;;
687       1)
688         echo "${red}Default Gateway Detected on Private Interface!${reset}"
689         echo "${red}Private subnet should be private and not have Internet access!${reset}"
690         exit 1
691         ;;
692       2)
693         echo "${blue}Default Gateway Detected on Public Interface!${reset}"
694         sed -i 's/^.*default_gw =.*$/  default_gw = '\""$host_default_gw"\"'/' Vagrantfile
695         echo "${blue}Will setup NAT from Admin -> Public Network on VM!${reset}"
696         sed -i 's/^.*nat_flag =.*$/  nat_flag = true/' Vagrantfile
697         echo "${blue}Setting node gateway to be VM Admin IP${reset}"
698         node_default_gw=${interface_ip_arr[0]}
699         public_gateway=$default_gw
700         ;;
701       3)
702         echo "${red}Default Gateway Detected on Storage Interface!${reset}"
703         echo "${red}Storage subnet should be private and not have Internet access!${reset}"
704         exit 1
705         ;;
706       *)
707         echo "${red}Unable to determine which interface default gateway is on..Exiting!${reset}"
708         exit 1
709         ;;
710     esac
711   else
712     #assumes 24 bit mask
713     defaultgw=`echo ${interface_ip_arr[0]} | cut -d. -f1-3`
714     firstip=.1
715     defaultgw=$defaultgw$firstip
716     echo "${blue}Unable to find default gateway.  Assuming it is $defaultgw ${reset}"
717     sed -i 's/^.*default_gw =.*$/  default_gw = '\""$defaultgw"\"'/' Vagrantfile
718     node_default_gw=$defaultgw
719   fi
720
721   if [ $base_config ]; then
722     if ! cp -f $base_config opnfv_ksgen_settings.yml; then
723       echo "{red}ERROR: Unable to copy $base_config to opnfv_ksgen_settings.yml${reset}"
724       exit 1
725     fi
726   fi
727
728   nodes=`sed -nr '/nodes:/{:start /workaround/!{N;b start};//p}' opnfv_ksgen_settings.yml | sed -n '/^  [A-Za-z0-9]\+:$/p' | sed 's/\s*//g' | sed 's/://g'`
729   controller_nodes=`echo $nodes | tr " " "\n" | grep controller | tr "\n" " "`
730   echo "${blue}Controller nodes found in settings: ${controller_nodes}${reset}"
731   my_controller_array=( $controller_nodes )
732   num_control_nodes=${#my_controller_array[@]}
733   if [ "$num_control_nodes" -ne 3 ]; then
734     if cat opnfv_ksgen_settings.yml | grep ha_flag | grep true; then
735       echo "${red}Error: You must define exactly 3 control nodes when HA flag is true!${reset}"
736       exit 1
737     fi
738   else
739     echo "${blue}Number of Controller nodes detected: ${num_control_nodes}${reset}"
740   fi
741
742   if [ $no_parse ]; then
743     echo "${blue}Skipping parsing variables into settings file as no_parse flag is set${reset}"
744
745   else
746
747     echo "${blue}Gathering network parameters for Target System...this may take a few minutes${reset}"
748     ##Edit the ksgen settings appropriately
749     ##ksgen settings will be stored in /vagrant on the vagrant machine
750     ##if single node deployment all the variables will have the same ip
751     ##interface names will be enp0s3, enp0s8, enp0s9 in chef/centos7
752
753     sed -i 's/^.*default_gw:.*$/default_gw:'" $node_default_gw"'/' opnfv_ksgen_settings.yml
754
755     ##replace private interface parameter
756     ##private interface will be of hosts, so we need to know the provisioned host interface name
757     ##we add biosdevname=0, net.ifnames=0 to the kickstart to use regular interface naming convention on hosts
758     ##replace IP for parameters with next IP that will be given to controller
759     if [ "$deployment_type" == "single_network" ]; then
760       ##we also need to assign IP addresses to nodes
761       ##for single node, foreman is managing the single network, so we can't reserve them
762       ##not supporting single network anymore for now
763       echo "{blue}Single Network type is unsupported right now.  Please check your interface configuration.  Exiting. ${reset}"
764       exit 0
765
766     elif [[ "$deployment_type" == "multi_network" || "$deployment_type" == "three_network" ]]; then
767
768       if [ "$deployment_type" == "three_network" ]; then
769         sed -i 's/^.*network_type:.*$/network_type: three_network/' opnfv_ksgen_settings.yml
770       fi
771
772       sed -i 's/^.*deployment_type:.*$/  deployment_type: '"$deployment_type"'/' opnfv_ksgen_settings.yml
773
774       ##get ip addresses for private network on controllers to make dhcp entries
775       ##required for controllers_ip_array global param
776       next_private_ip=${interface_ip_arr[1]}
777       type=_private
778       control_count=0
779       for node in controller1 controller2 controller3; do
780         next_private_ip=$(next_usable_ip $next_private_ip)
781         if [ ! "$next_private_ip" ]; then
782           printf '%s\n' 'deploy.sh: Unable to find next ip for private network for control nodes' >&2
783           exit 1
784         fi
785         sed -i 's/'"$node$type"'/'"$next_private_ip"'/g' opnfv_ksgen_settings.yml
786         controller_ip_array=$controller_ip_array$next_private_ip,
787         controllers_ip_arr[$control_count]=$next_private_ip
788         ((control_count++))
789       done
790
791       next_public_ip=${interface_ip_arr[2]}
792       foreman_ip=$next_public_ip
793
794       ##if no dhcp, find all the Admin IPs for nodes in advance
795       if [ $virtual ]; then
796         if [ -z "$enable_virtual_dhcp" ]; then
797           sed -i 's/^.*no_dhcp:.*$/no_dhcp: true/' opnfv_ksgen_settings.yml
798           nodes=`sed -nr '/nodes:/{:start /workaround/!{N;b start};//p}' opnfv_ksgen_settings.yml | sed -n '/^  [A-Za-z0-9]\+:$/p' | sed 's/\s*//g' | sed 's/://g'`
799           compute_nodes=`echo $nodes | tr " " "\n" | grep -v controller | tr "\n" " "`
800           controller_nodes=`echo $nodes | tr " " "\n" | grep controller | tr "\n" " "`
801           nodes=${controller_nodes}${compute_nodes}
802           next_admin_ip=${interface_ip_arr[0]}
803           type=_admin
804           for node in ${nodes}; do
805             next_admin_ip=$(next_ip $next_admin_ip)
806             if [ ! "$next_admin_ip" ]; then
807               echo "${red} Unable to find an unused IP in admin_network for $node ! ${reset}"
808               exit 1
809             else
810               admin_ip_arr[$node]=$next_admin_ip
811               sed -i 's/'"$node$type"'/'"$next_admin_ip"'/g' opnfv_ksgen_settings.yml
812             fi
813           done
814
815           ##allocate node public IPs
816           for node in ${nodes}; do
817             next_public_ip=$(next_usable_ip $next_public_ip)
818             if [ ! "$next_public_ip" ]; then
819               echo "${red} Unable to find an unused IP in admin_network for $node ! ${reset}"
820               exit 1
821             else
822               public_ip_arr[$node]=$next_public_ip
823             fi
824           done
825         fi
826       fi
827       ##replace global param for controllers_ip_array
828       controller_ip_array=${controller_ip_array%?}
829       sed -i 's/^.*controllers_ip_array:.*$/  controllers_ip_array: '"$controller_ip_array"'/' opnfv_ksgen_settings.yml
830
831       ##now replace all the VIP variables.  admin//private can be the same IP
832       ##we have to use IP's here that won't be allocated to hosts at provisioning time
833       ##therefore we increment the ip by 10 to make sure we have a safe buffer
834       next_private_ip=$(increment_ip $next_private_ip 10)
835
836       private_output=$(grep -E '*private_vip|loadbalancer_vip|db_vip|amqp_vip|*admin_vip' opnfv_ksgen_settings.yml)
837       if [ ! -z "$private_output" ]; then
838         while read -r line; do
839           sed -i 's/^.*'"$line"'.*$/  '"$line $next_private_ip"'/' opnfv_ksgen_settings.yml
840           next_private_ip=$(next_usable_ip $next_private_ip)
841           if [ ! "$next_private_ip" ]; then
842             printf '%s\n' 'deploy.sh: Unable to find next ip for private network for vip replacement' >&2
843             exit 1
844           fi
845         done <<< "$private_output"
846       fi
847
848       ##replace odl_control_ip (non-HA only)
849       odl_control_ip=${controllers_ip_arr[0]}
850       sed -i 's/^.*odl_control_ip:.*$/  odl_control_ip: '"$odl_control_ip"'/' opnfv_ksgen_settings.yml
851
852       ##replace controller_ip (non-HA only)
853       sed -i 's/^.*controller_ip:.*$/  controller_ip: '"$odl_control_ip"'/' opnfv_ksgen_settings.yml
854
855       ##replace foreman site
856       sed -i 's/^.*foreman_url:.*$/  foreman_url:'" https:\/\/$foreman_ip"'\/api\/v2\//' opnfv_ksgen_settings.yml
857       ##replace public vips
858       ##no need to do this if no dhcp
859       if [[ -z "$enable_virtual_dhcp" && ! -z "$virtual" ]]; then
860         next_public_ip=$(next_usable_ip $next_public_ip)
861       else
862         next_public_ip=$(increment_ip $next_public_ip 10)
863       fi
864
865       public_output=$(grep -E '*public_vip' opnfv_ksgen_settings.yml)
866       if [ ! -z "$public_output" ]; then
867         while read -r line; do
868           if echo $line | grep horizon_public_vip; then
869             horizon_public_vip=$next_public_ip
870           fi
871           sed -i 's/^.*'"$line"'.*$/  '"$line $next_public_ip"'/' opnfv_ksgen_settings.yml
872           next_public_ip=$(next_usable_ip $next_public_ip)
873           if [ ! "$next_public_ip" ]; then
874             printf '%s\n' 'deploy.sh: Unable to find next ip for public network for vip replcement' >&2
875             exit 1
876           fi
877         done <<< "$public_output"
878       fi
879
880       ##replace public_network param
881       public_subnet=$(find_subnet $next_public_ip $public_subnet_mask)
882       sed -i 's/^.*public_network:.*$/  public_network:'" $public_subnet"'/' opnfv_ksgen_settings.yml
883       ##replace private_network param
884       private_subnet=$(find_subnet $next_private_ip $private_subnet_mask)
885       sed -i 's/^.*private_network:.*$/  private_network:'" $private_subnet"'/' opnfv_ksgen_settings.yml
886       ##replace storage_network
887       if [ "$deployment_type" == "three_network" ]; then
888         sed -i 's/^.*storage_network:.*$/  storage_network:'" $private_subnet"'/' opnfv_ksgen_settings.yml
889       else
890         next_storage_ip=${interface_ip_arr[3]}
891         storage_subnet=$(find_subnet $next_storage_ip $storage_subnet_mask)
892         sed -i 's/^.*storage_network:.*$/  storage_network:'" $storage_subnet"'/' opnfv_ksgen_settings.yml
893       fi
894
895       ##replace public_subnet param
896       public_subnet=$public_subnet'\'$public_short_subnet_mask
897       sed -i 's/^.*public_subnet:.*$/  public_subnet:'" $public_subnet"'/' opnfv_ksgen_settings.yml
898       ##replace private_subnet param
899       private_subnet=$private_subnet'\'$private_short_subnet_mask
900       sed -i 's/^.*private_subnet:.*$/  private_subnet:'" $private_subnet"'/' opnfv_ksgen_settings.yml
901
902       ##replace public_dns param to be foreman server
903       sed -i 's/^.*public_dns:.*$/  public_dns: '${interface_ip_arr[2]}'/' opnfv_ksgen_settings.yml
904
905       ##replace public_gateway
906       if [ -z "$public_gateway" ]; then
907         ##if unset then we assume its the first IP in the public subnet
908         public_subnet=$(find_subnet $next_public_ip $public_subnet_mask)
909         public_gateway=$(increment_subnet $public_subnet 1)
910       fi
911       sed -i 's/^.*public_gateway:.*$/  public_gateway:'" $public_gateway"'/' opnfv_ksgen_settings.yml
912
913       ##we have to define an allocation range of the public subnet to give
914       ##to neutron to use as floating IPs
915       ##if static ip range, then we take the difference of the end range and current ip
916       ## to be the allocation pool
917       ##if not static ip, we will use the last 20 IP from the subnet
918       ## note that this is not a really good idea because the subnet must be at least a /27 for this to work...
919       public_subnet=$(find_subnet $next_public_ip $public_subnet_mask)
920       if [ ! -z "$static_ip_range" ]; then
921         begin_octet=$(echo $next_public_ip | cut -d . -f4)
922         end_octet=$(echo $static_ip_range_end | cut -d . -f4)
923         ip_diff=$((end_octet-begin_octet))
924         if [ $ip_diff -le 0 ]; then
925           echo "${red}ip range left for floating range is less than or equal to 0! $ipdiff ${reset}"
926           exit 1
927         else
928           public_allocation_start=$(next_ip $next_public_ip)
929           public_allocation_end=$static_ip_range_end
930         fi
931       else
932         last_ip_subnet=$(find_last_ip_subnet $next_public_ip $public_subnet_mask)
933         public_allocation_start=$(subtract_ip $last_ip_subnet $floating_ip_count )
934         public_allocation_end=${last_ip_subnet}
935       fi
936       echo "${blue}Neutron Floating IP range: $public_allocation_start to $public_allocation_end ${reset}"
937
938       sed -i 's/^.*public_allocation_start:.*$/  public_allocation_start:'" $public_allocation_start"'/' opnfv_ksgen_settings.yml
939       sed -i 's/^.*public_allocation_end:.*$/  public_allocation_end:'" $public_allocation_end"'/' opnfv_ksgen_settings.yml
940
941     else
942       printf '%s\n' 'deploy.sh: Unknown network type: $deployment_type' >&2
943       exit 1
944     fi
945
946     echo "${blue}Parameters Complete.  Settings have been set for Foreman. ${reset}"
947
948   fi
949 }
950
951 ##Configure bootstrap.sh to use the virtual Khaleesi playbook
952 ##params: none
953 ##usage: configure_virtual()
954 configure_virtual() {
955   if [ $virtual ]; then
956     echo "${blue} Virtual flag detected, setting Khaleesi playbook to be opnfv-vm.yml ${reset}"
957     sed -i 's/opnfv.yml/opnfv-vm.yml/' bootstrap.sh
958   fi
959 }
960
961 ##Starts Foreman VM with Vagrant
962 ##params: none
963 ##usage: start_vagrant()
964 start_foreman() {
965   echo "${blue}Starting Vagrant! ${reset}"
966
967   ##stand up vagrant
968   if ! vagrant up; then
969     printf '%s\n' 'deploy.sh: Unable to complete Foreman VM install' >&2
970     exit 1
971   else
972     echo "${blue}Foreman VM is up! ${reset}"
973   fi
974 }
975
976 ##start the VM if this is a virtual installation
977 ##this function does nothing if baremetal servers are being used
978 ##params: none
979 ##usage: start_virtual_nodes()
980 start_virtual_nodes() {
981   if [ $virtual ]; then
982
983     ##Bring up VM nodes
984     echo "${blue}Setting VMs up... ${reset}"
985     nodes=`sed -nr '/nodes:/{:start /workaround/!{N;b start};//p}' opnfv_ksgen_settings.yml | sed -n '/^  [A-Za-z0-9]\+:$/p' | sed 's/\s*//g' | sed 's/://g'`
986     ##due to ODL Helium bug of OVS connecting to ODL too early, we need controllers to install first
987     ##this is fix kind of assumes more than I would like to, but for now it should be OK as we always have
988     ##3 static controllers
989     compute_nodes=`echo $nodes | tr " " "\n" | grep -v controller | tr "\n" " "`
990     controller_nodes=`echo $nodes | tr " " "\n" | grep controller | tr "\n" " "`
991     nodes=${controller_nodes}${compute_nodes}
992     controller_count=0
993     compute_wait_completed=false
994
995     for node in ${nodes}; do
996
997       ##remove VM nodes incase it wasn't cleaned up
998       rm -rf $vm_dir/$node
999       rm -rf /tmp/genesis/
1000
1001       ##clone genesis and move into node folder
1002       clone_bgs $vm_dir/$node
1003
1004       cd $vm_dir/$node
1005
1006       if [ $base_config ]; then
1007         if ! cp -f $base_config opnfv_ksgen_settings.yml; then
1008           echo "${red}ERROR: Unable to copy $base_config to opnfv_ksgen_settings.yml${reset}"
1009           exit 1
1010         fi
1011       fi
1012
1013       ##parse yaml into variables
1014       eval $(parse_yaml opnfv_ksgen_settings.yml "config_")
1015       ##find node type
1016       node_type=config_nodes_${node}_type
1017       node_type=$(eval echo \$$node_type)
1018
1019       ##trozet test make compute nodes wait 20 minutes
1020       if [ "$compute_wait_completed" = false ] && [ "$node_type" != "controller" ]; then
1021         echo "${blue}Waiting 20 minutes for Control nodes to install before continuing with Compute nodes..."
1022         compute_wait_completed=true
1023         sleep 1400
1024       fi
1025
1026       ## Add Admin interface
1027       mac_string=config_nodes_${node}_mac_address
1028       mac_addr=$(eval echo \$$mac_string)
1029       mac_addr=$(echo $mac_addr | sed 's/:\|-//g')
1030       if [ $mac_addr == "" ]; then
1031         echo "${red} Unable to find mac_address for $node! ${reset}"
1032         exit 1
1033       fi
1034       this_admin_ip=${admin_ip_arr[$node]}
1035       sed -i 's/^.*eth_replace0.*$/  config.vm.network "private_network", virtualbox__intnet: "my_admin_network", ip: '\""$this_admin_ip"\"', netmask: '\""$admin_subnet_mask"\"', :mac => '\""$mac_addr"\"'/' Vagrantfile
1036
1037       ## Add private interface
1038       if [ "$node_type" == "controller" ]; then
1039           mac_string=config_nodes_${node}_private_mac
1040           mac_addr=$(eval echo \$$mac_string)
1041           if [ $mac_addr == "" ]; then
1042             echo "${red} Unable to find private_mac for $node! ${reset}"
1043             exit 1
1044           fi
1045       else
1046           ##generate random mac
1047           mac_addr=$(echo -n 00-60-2F; dd bs=1 count=3 if=/dev/random 2>/dev/null |hexdump -v -e '/1 "-%02X"')
1048       fi
1049       mac_addr=$(echo $mac_addr | sed 's/:\|-//g')
1050       if [ "$node_type" == "controller" ]; then
1051         new_node_ip=${controllers_ip_arr[$controller_count]}
1052         if [ ! "$new_node_ip" ]; then
1053           echo "{red}ERROR: Empty node ip for controller $controller_count ${reset}"
1054           exit 1
1055         fi
1056         ((controller_count++))
1057       else
1058         next_private_ip=$(next_ip $next_private_ip)
1059         if [ ! "$next_private_ip" ]; then
1060           echo "{red}ERROR: Could not find private ip for $node ${reset}"
1061           exit 1
1062         fi
1063         new_node_ip=$next_private_ip
1064       fi
1065       sed -i 's/^.*eth_replace1.*$/  config.vm.network "private_network", virtualbox__intnet: "my_private_network", :mac => '\""$mac_addr"\"', ip: '\""$new_node_ip"\"', netmask: '\""$private_subnet_mask"\"'/' Vagrantfile
1066       ##replace host_ip in vm_nodes_provision with private ip
1067       sed -i 's/^host_ip=REPLACE/host_ip='$new_node_ip'/' vm_nodes_provision.sh
1068       ##replace ping site
1069       if [ ! -z "$ping_site" ]; then
1070         sed -i 's/www.google.com/'$ping_site'/' vm_nodes_provision.sh
1071       fi
1072
1073       ##find public ip info and add public interface
1074       mac_addr=$(echo -n 00-60-2F; dd bs=1 count=3 if=/dev/random 2>/dev/null |hexdump -v -e '/1 "-%02X"')
1075       mac_addr=$(echo $mac_addr | sed 's/:\|-//g')
1076       this_public_ip=${public_ip_arr[$node]}
1077
1078       if [ -z "$enable_virtual_dhcp" ]; then
1079         sed -i 's/^.*eth_replace2.*$/  config.vm.network "public_network", bridge: '\'"$public_interface"\'', :mac => '\""$mac_addr"\"', ip: '\""$this_public_ip"\"', netmask: '\""$public_subnet_mask"\"'/' Vagrantfile
1080       else
1081         sed -i 's/^.*eth_replace2.*$/  config.vm.network "public_network", bridge: '\'"$public_interface"\'', :mac => '\""$mac_addr"\"'/' Vagrantfile
1082       fi
1083       remove_vagrant_network eth_replace3
1084
1085       ##modify provisioning to do puppet install, config, and foreman check-in
1086       ##substitute host_name and dns_server in the provisioning script
1087       host_string=config_nodes_${node}_hostname
1088       host_name=$(eval echo \$$host_string)
1089       sed -i 's/^host_name=REPLACE/host_name='$host_name'/' vm_nodes_provision.sh
1090       ##dns server should be the foreman server
1091       sed -i 's/^dns_server=REPLACE/dns_server='${interface_ip_arr[0]}'/' vm_nodes_provision.sh
1092       ## remove bootstrap and NAT provisioning
1093       sed -i '/nat_setup.sh/d' Vagrantfile
1094       sed -i 's/bootstrap.sh/vm_nodes_provision.sh/' Vagrantfile
1095       ## modify default_gw to be node_default_gw
1096       sed -i 's/^.*default_gw =.*$/  default_gw = '\""$node_default_gw"\"'/' Vagrantfile
1097       ## modify VM memory to be 4gig
1098       ##if node type is controller
1099       if [ "$node_type" == "controller" ]; then
1100         sed -i 's/^.*vb.memory =.*$/     vb.memory = 4096/' Vagrantfile
1101       fi
1102       echo "${blue}Starting Vagrant Node $node! ${reset}"
1103       ##stand up vagrant
1104       if ! vagrant up; then
1105         echo "${red} Unable to start $node ${reset}"
1106         exit 1
1107       else
1108         echo "${blue} $node VM is up! ${reset}"
1109       fi
1110     done
1111     echo "${blue} All VMs are UP! ${reset}"
1112     echo "${blue} Waiting for puppet to complete on the nodes... ${reset}"
1113     ##check puppet is complete
1114     ##ssh into foreman server, run check to verify puppet is complete
1115     pushd $vm_dir/foreman_vm
1116     if ! vagrant ssh -c "/opt/khaleesi/run.sh --no-logs --use /vagrant/opnfv_ksgen_settings.yml /opt/khaleesi/playbooks/validate_opnfv-vm.yml"; then
1117       echo "${red} Failed to validate puppet completion on nodes ${reset}"
1118       exit 1
1119     else
1120       echo "{$blue} Puppet complete on all nodes! ${reset}"
1121     fi
1122     popd
1123     ##add routes back to nodes
1124     for node in ${nodes}; do
1125       pushd $vm_dir/$node
1126       if ! vagrant ssh -c "route | grep default | grep $this_default_gw"; then
1127         echo "${blue} Adding public route back to $node! ${reset}"
1128         vagrant ssh -c "route add default gw $this_default_gw"
1129       fi
1130       popd
1131     done
1132     if [ ! -z "$horizon_public_vip" ]; then
1133       echo "${blue} Virtual deployment SUCCESS!! Foreman URL:  http://${foreman_ip}, Horizon URL: http://${horizon_public_vip} ${reset}"
1134     else
1135       echo "${blue} Virtual deployment SUCCESS!! Foreman URL:  http://${foreman_ip}, Horizon URL: http://${odl_control_ip} ${reset}"
1136     fi
1137   fi
1138 }
1139
1140 ##check to make sure nodes are powered off
1141 ##this function does nothing if virtual
1142 ##params: none
1143 ##usage: check_baremetal_nodes()
1144 check_baremetal_nodes() {
1145   if [ $virtual ]; then
1146     echo "${blue}Skipping Baremetal node power status check as deployment is virtual ${reset}"
1147   else
1148     echo "${blue}Checking Baremetal nodes power state... ${reset}"
1149     if [ ! -z "$base_config" ]; then
1150       # Install ipmitool
1151       # Major version is pinned to force some consistency for Arno
1152       if ! yum list installed | grep -i ipmitool; then
1153         echo "${blue}Installing ipmitool...${reset}"
1154         if ! yum -y install ipmitool-1*; then
1155           echo "${red}Failed to install ipmitool!${reset}"
1156           exit 1
1157         fi
1158       fi
1159
1160         ###find all the bmc IPs and number of nodes
1161       node_counter=0
1162       output=`grep bmc_ip $base_config | grep -Eo '[0-9]+.[0-9]+.[0-9]+.[0-9]+'`
1163       for line in ${output} ; do
1164         bmc_ip[$node_counter]=$line
1165         ((node_counter++))
1166       done
1167
1168       max_nodes=$((node_counter-1))
1169
1170       ###find bmc_users per node
1171       node_counter=0
1172       output=`grep bmc_user $base_config | sed 's/\s*bmc_user:\s*//'`
1173       for line in ${output} ; do
1174         bmc_user[$node_counter]=$line
1175         ((node_counter++))
1176       done
1177
1178       ###find bmc_pass per node
1179       node_counter=0
1180       output=`grep bmc_pass $base_config | sed 's/\s*bmc_pass:\s*//'`
1181       for line in ${output} ; do
1182         bmc_pass[$node_counter]=$line
1183         ((node_counter++))
1184       done
1185
1186       for mynode in `seq 0 $max_nodes`; do
1187         echo "${blue}Node: ${bmc_ip[$mynode]} ${bmc_user[$mynode]} ${bmc_pass[$mynode]} ${reset}"
1188         ipmi_output=`ipmitool -I lanplus -P ${bmc_pass[$mynode]} -U ${bmc_user[$mynode]} -H ${bmc_ip[$mynode]} chassis status \
1189                     | grep "System Power" | cut -d ':' -f2 | tr -d [:blank:]`
1190         if [ "$ipmi_output" == "on" ]; then
1191           echo "${red}Error: Node is powered on: ${bmc_ip[$mynode]} ${reset}"
1192           echo "${red}Please run clean.sh before running deploy! ${reset}"
1193           exit 1
1194         elif [ "$ipmi_output" == "off" ]; then
1195           echo "${blue}Node: ${bmc_ip[$mynode]} is powered off${reset}"
1196         else
1197           echo "${red}Warning: Unable to detect node power state: ${bmc_ip[$mynode]} ${reset}"
1198         fi
1199       done
1200     else
1201       echo "${red}base_config was not provided for a baremetal install! Exiting${reset}"
1202       exit 1
1203     fi
1204   fi
1205 }
1206
1207 ##END FUNCTIONS
1208
1209 main() {
1210   parse_cmdline "$@"
1211   disable_selinux
1212   check_baremetal_nodes
1213   install_EPEL
1214   install_vbox
1215   install_ansible
1216   install_vagrant
1217   clean_tmp
1218   verify_vm_dir
1219   clone_bgs $vm_dir/foreman_vm
1220   configure_network
1221   configure_virtual
1222   start_foreman
1223   start_virtual_nodes
1224 }
1225
1226 main "$@"