9c1447bb4b254b627382dc99854582de5b5a109b
[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 ##END VARS
34
35 ##FUNCTIONS
36 display_usage() {
37   echo -e "\n\n${blue}This script is used to deploy Foreman/QuickStack Installer and Provision OPNFV Target System${reset}\n\n"
38   echo -e "\n${green}Make sure you have the latest kernel installed before running this script! (yum update kernel +reboot)${reset}\n"
39   echo -e "\nUsage:\n$0 [arguments] \n"
40   echo -e "\n   -no_parse : No variable parsing into config. Flag. \n"
41   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"
42   echo -e "\n   -virtual : Node virtualization instead of baremetal. Flag. \n"
43   echo -e "\n   -enable_virtual_dhcp : Run dhcp server instead of using static IPs.  Use this with -virtual only. \n"
44   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"
45   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"
46   echo -e "\n   -floating_ip_count : number of IP address from the public range to be used for floating IP. Default is 20.\n"
47   echo -e "\n   -admin_nic : Baremetal NIC for the admin network.  Required if other "nic" arguments are used.  \
48 Not applicable with -virtual.  Example: -admin_nic em1"
49   echo -e "\n   -private_nic : Baremetal NIC for the private network.  Required if other "nic" arguments are used.  \
50 Not applicable with -virtual.  Example: -private_nic em2"
51   echo -e "\n   -public_nic : Baremetal NIC for the public network.  Required if other "nic" arguments are used.  \
52 Can also be used with -virtual.  Example: -public_nic em3"
53   echo -e "\n   -storage_nic : Baremetal NIC for the storage network.  Optional.  Not applicable with -virtual. \
54 Private NIC will be used for storage if not specified. Example: -storage_nic em4"
55 }
56
57 ##verify vm dir exists
58 ##params: none
59 function verify_vm_dir {
60   if [ -d "$vm_dir" ]; then
61     echo -e "\n\n${red}ERROR: VM Directory: $vm_dir already exists.  Environment not clean.  Please use clean.sh.  Exiting${reset}\n\n"
62     exit 1
63   else
64     mkdir -p $vm_dir
65   fi
66
67   chmod 700 $vm_dir
68
69   if [ ! -d $vm_dir ]; then
70     echo -e "\n\n${red}ERROR: Unable to create VM Directory: $vm_dir  Exiting${reset}\n\n"
71     exit -1
72   fi
73 }
74
75 ##find ip of interface
76 ##params: interface name
77 function find_ip {
78   ip addr show $1 | grep -Eo '^\s+inet\s+[\.0-9]+' | awk '{print $2}'
79 }
80
81 ##finds subnet of ip and netmask
82 ##params: ip, netmask
83 function find_subnet {
84   IFS=. read -r i1 i2 i3 i4 <<< "$1"
85   IFS=. read -r m1 m2 m3 m4 <<< "$2"
86   printf "%d.%d.%d.%d\n" "$((i1 & m1))" "$((i2 & m2))" "$((i3 & m3))" "$((i4 & m4))"
87 }
88
89 ##verify subnet has at least n IPs
90 ##params: subnet mask, n IPs
91 function verify_subnet_size {
92   IFS=. read -r i1 i2 i3 i4 <<< "$1"
93   num_ips_required=$2
94
95   ##this function assumes you would never need more than 254
96   ##we check here to make sure
97   if [ "$num_ips_required" -ge 254 ]; then
98     echo -e "\n\n${red}ERROR: allocating more than 254 IPs is unsupported...Exiting${reset}\n\n"
99     return 1
100   fi
101
102   ##we just return if 3rd octet is not 255
103   ##because we know the subnet is big enough
104   if [ "$i3" -ne 255 ]; then
105     return 0
106   elif [ $((254-$i4)) -ge "$num_ips_required" ]; then
107     return 0
108   else
109     echo -e "\n\n${red}ERROR: Subnet is too small${reset}\n\n"
110     return 1
111   fi
112 }
113
114 ##finds last usable ip (broadcast minus 1) of a subnet from an IP and netmask
115 ## Warning: This function only works for IPv4 at the moment.
116 ##params: ip, netmask
117 function find_last_ip_subnet {
118   IFS=. read -r i1 i2 i3 i4 <<< "$1"
119   IFS=. read -r m1 m2 m3 m4 <<< "$2"
120   IFS=. read -r s1 s2 s3 s4 <<< "$((i1 & m1)).$((i2 & m2)).$((i3 & m3)).$((i4 & m4))"
121   printf "%d.%d.%d.%d\n" "$((255 - $m1 + $s1))" "$((255 - $m2 + $s2))" "$((255 - $m3 + $s3))" "$((255 - $m4 + $s4 - 1))"
122 }
123
124 ##increments subnet by a value
125 ##params: ip, value
126 ##assumes low value
127 function increment_subnet {
128   IFS=. read -r i1 i2 i3 i4 <<< "$1"
129   printf "%d.%d.%d.%d\n" "$i1" "$i2" "$i3" "$((i4 | $2))"
130 }
131
132
133 ##finds netmask of interface
134 ##params: interface
135 ##returns long format 255.255.x.x
136 function find_netmask {
137   ifconfig $1 | grep -Eo 'netmask\s+[\.0-9]+' | awk '{print $2}'
138 }
139
140 ##finds short netmask of interface
141 ##params: interface
142 ##returns short format, ex: /21
143 function find_short_netmask {
144   echo "/$(ip addr show $1 | grep -Eo '^\s+inet\s+[\/\.0-9]+' | awk '{print $2}' | cut -d / -f2)"
145 }
146
147 ##increments next IP
148 ##params: ip
149 ##assumes a /24 subnet
150 function next_ip {
151   baseaddr="$(echo $1 | cut -d. -f1-3)"
152   lsv="$(echo $1 | cut -d. -f4)"
153   if [ "$lsv" -ge 254 ]; then
154     return 1
155   fi
156   ((lsv++))
157   echo $baseaddr.$lsv
158 }
159
160 ##subtracts a value from an IP address
161 ##params: last ip, ip_count
162 ##assumes ip_count is less than the last octect of the address
163 subtract_ip() {
164   IFS=. read -r i1 i2 i3 i4 <<< "$1"
165   ip_count=$2
166   if [ $i4 -lt $ip_count ]; then
167     echo -e "\n\n${red}ERROR: Can't subtract $ip_count from IP address $1  Exiting${reset}\n\n"
168     exit 1
169   fi
170   printf "%d.%d.%d.%d\n" "$i1" "$i2" "$i3" "$((i4 - $ip_count ))"
171 }
172
173 ##removes the network interface config from Vagrantfile
174 ##params: interface
175 ##assumes you are in the directory of Vagrantfile
176 function remove_vagrant_network {
177   sed -i 's/^.*'"$1"'.*$//' Vagrantfile
178 }
179
180 ##check if IP is in use
181 ##params: ip
182 ##ping ip to get arp entry, then check arp
183 function is_ip_used {
184   ping -c 5 $1 > /dev/null 2>&1
185   arp -n | grep "$1 " | grep -iv incomplete > /dev/null 2>&1
186 }
187
188 ##find next usable IP
189 ##params: ip
190 function next_usable_ip {
191   new_ip=$(next_ip $1)
192   while [ "$new_ip" ]; do
193     if ! is_ip_used $new_ip; then
194       echo $new_ip
195       return 0
196     fi
197     new_ip=$(next_ip $new_ip)
198   done
199   return 1
200 }
201
202 ##increment ip by value
203 ##params: ip, amount to increment by
204 ##increment_ip $next_private_ip 10
205 function increment_ip {
206   baseaddr="$(echo $1 | cut -d. -f1-3)"
207   lsv="$(echo $1 | cut -d. -f4)"
208   incrval=$2
209   lsv=$((lsv+incrval))
210   if [ "$lsv" -ge 254 ]; then
211     return 1
212   fi
213   echo $baseaddr.$lsv
214 }
215
216 ##translates yaml into variables
217 ##params: filename, prefix (ex. "config_")
218 ##usage: parse_yaml opnfv_ksgen_settings.yml "config_"
219 parse_yaml() {
220    local prefix=$2
221    local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
222    sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \
223         -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p"  $1 |
224    awk -F$fs '{
225       indent = length($1)/2;
226       vname[indent] = $2;
227       for (i in vname) {if (i > indent) {delete vname[i]}}
228       if (length($3) > 0) {
229          vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
230          printf("%s%s%s=\"%s\"\n", "'$prefix'",vn, $2, $3);
231       }
232    }'
233 }
234
235 ##translates the command line paramaters into variables
236 ##params: $@ the entire command line is passed
237 ##usage: parse_cmd_line() "$@"
238 parse_cmdline() {
239   if [[ ( $1 == "--help") ||  $1 == "-h" ]]; then
240     display_usage
241     exit 0
242   fi
243
244   echo -e "\n\n${blue}This script is used to deploy Foreman/QuickStack Installer and Provision OPNFV Target System${reset}\n\n"
245   echo "Use -h to display help"
246   sleep 2
247
248   while [ "`echo $1 | cut -c1`" = "-" ]
249   do
250     echo $1
251     case "$1" in
252         -base_config)
253                 base_config=$2
254                 shift 2
255             ;;
256         -no_parse)
257                 no_parse="TRUE"
258                 shift 1
259             ;;
260         -virtual)
261                 virtual="TRUE"
262                 shift 1
263             ;;
264         -enable_virtual_dhcp)
265                 enable_virtual_dhcp="TRUE"
266                 shift 1
267             ;;
268         -static_ip_range)
269                 static_ip_range=$2
270                 shift 2
271             ;;
272         -ping_site)
273                 ping_site=$2
274                 shift 2
275             ;;
276         -floating_ip_count)
277                 floating_ip_count=$2
278                 shift 2
279             ;;
280         -admin_nic)
281                 admin_nic=$2
282                 shift 2
283                 nic_arg_flag=1
284             ;;
285         -private_nic)
286                 private_nic=$2
287                 shift 2
288                 nic_arg_flag=1
289             ;;
290         -public_nic)
291                 public_nic=$2
292                 shift 2
293                 nic_arg_flag=1
294             ;;
295         -storage_nic)
296                 storage_nic=$2
297                 shift 2
298                 nic_arg_flag=1
299             ;;
300         *)
301                 display_usage
302                 exit 1
303             ;;
304     esac
305   done
306
307   if [ ! -z "$enable_virtual_dhcp" ] && [ ! -z "$static_ip_range" ]; then
308     echo -e "\n\n${red}ERROR: Incorrect Usage.  Static IP range cannot be set when using DHCP!.  Exiting${reset}\n\n"
309     exit 1
310   fi
311
312   if [ -z "$virtual" ]; then
313     if [ ! -z "$enable_virtual_dhcp" ]; then
314       echo -e "\n\n${red}ERROR: Incorrect Usage.  enable_virtual_dhcp can only be set when using -virtual!.  Exiting${reset}\n\n"
315       exit 1
316     elif [ ! -z "$static_ip_range" ]; then
317       echo -e "\n\n${red}ERROR: Incorrect Usage.  static_ip_range can only be set when using -virtual!.  Exiting${reset}\n\n"
318       exit 1
319     fi
320   fi
321
322   if [ -z "$floating_ip_count" ]; then
323     floating_ip_count=20
324   fi
325
326   ##Validate nic args
327   if [[ $nic_arg_flag -eq 1 ]]; then
328     if [ -z "$virtual" ]; then
329       for nic_type in admin_nic private_nic public_nic; do
330         eval "nic_value=\$$nic_type"
331         if [ -z "$nic_value" ]; then
332           echo "${red}$nic_type is empty or not defined.  Required when other nic args are given!${reset}"
333           exit 1
334         fi
335         interface_ip=$(find_ip $nic_value)
336         if [ ! "$interface_ip" ]; then
337           echo "${red}$nic_value does not have an IP address! Exiting... ${reset}"
338           exit 1
339         fi
340       done
341     else
342       ##if virtual only public_nic should be specified
343       for nic_type in admin_nic private_nic storage_nic; do
344         eval "nic_value=\$$nic_type"
345         if [ ! -z "$nic_value" ]; then
346           echo "${red}$nic_type is not a valid argument using -virtual.  Please only specify public_nic!${reset}"
347           exit 1
348         fi
349       done
350
351       interface_ip=$(find_ip $public_nic)
352       if [ ! "$interface_ip" ]; then
353         echo "${red}Public NIC: $public_nic does not have an IP address! Exiting... ${reset}"
354         exit 1
355       fi
356     fi
357   fi
358 }
359
360 ##disable selinux
361 ##params: none
362 ##usage: disable_selinux()
363 disable_selinux() {
364   /sbin/setenforce 0
365 }
366
367 ##Install the EPEL repository and additional packages
368 ##params: none
369 ##usage: install_EPEL()
370 install_EPEL() {
371   # Install EPEL repo for access to many other yum repos
372   # Major version is pinned to force some consistency for Arno
373   yum install -y epel-release-7*
374
375   # Install other required packages
376   # Major versions are pinned to force some consistency for Arno
377   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
378     printf '%s\n' 'deploy.sh: Unable to install depdency packages' >&2
379     exit 1
380   fi
381 }
382
383 ##Download and install virtual box
384 ##params: none
385 ##usage: install_vbox()
386 install_vbox() {
387   ##install VirtualBox repo
388   if cat /etc/*release | grep -i "Fedora release"; then
389     vboxurl=http://download.virtualbox.org/virtualbox/rpm/fedora/\$releasever/\$basearch
390   else
391     vboxurl=http://download.virtualbox.org/virtualbox/rpm/el/\$releasever/\$basearch
392   fi
393
394   cat > /etc/yum.repos.d/virtualbox.repo << EOM
395 [virtualbox]
396 name=Oracle Linux / RHEL / CentOS-\$releasever / \$basearch - VirtualBox
397 baseurl=$vboxurl
398 enabled=1
399 gpgcheck=1
400 gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc
401 skip_if_unavailable = 1
402 keepcache = 0
403 EOM
404
405   ##install VirtualBox
406   if ! yum list installed | grep -i virtualbox; then
407     if ! yum -y install VirtualBox-4.3; then
408       printf '%s\n' 'deploy.sh: Unable to install virtualbox package' >&2
409       exit 1
410     fi
411   fi
412
413   ##install kmod-VirtualBox
414   if ! lsmod | grep vboxdrv; then
415     sudo /etc/init.d/vboxdrv setup
416     if ! lsmod | grep vboxdrv; then
417       printf '%s\n' 'deploy.sh: Unable to install kernel module for virtualbox' >&2
418       exit 1
419     fi
420   else
421     printf '%s\n' 'deploy.sh: Skipping kernel module for virtualbox.  Already Installed'
422   fi
423 }
424
425 ##install Ansible using yum
426 ##params: none
427 ##usage: install_ansible()
428 install_ansible() {
429   if ! yum list installed | grep -i ansible; then
430     if ! yum -y install ansible-1*; then
431       printf '%s\n' 'deploy.sh: Unable to install Ansible package' >&2
432       exit 1
433     fi
434   fi
435 }
436
437 ##install Vagrant RPM directly with the bintray.com site
438 ##params: none
439 ##usage: install_vagrant()
440 install_vagrant() {
441   if ! rpm -qa | grep vagrant; then
442     if ! rpm -Uvh https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.2_x86_64.rpm; then
443       printf '%s\n' 'deploy.sh: Unable to install vagrant package' >&2
444       exit 1
445     fi
446   else
447     printf '%s\n' 'deploy.sh: Skipping Vagrant install as it is already installed.'
448   fi
449
450   ##add centos 7 box to vagrant
451   if ! vagrant box list | grep opnfv/centos-7.0; then
452     if ! vagrant box add opnfv/centos-7.0 --provider virtualbox; then
453       printf '%s\n' 'deploy.sh: Unable to download centos7 box for Vagrant' >&2
454       exit 1
455     fi
456   else
457     printf '%s\n' 'deploy.sh: Skipping Vagrant box add as centos-7.0 is already installed.'
458   fi
459
460   ##install workaround for centos7
461   if ! vagrant plugin list | grep vagrant-centos7_fix; then
462     if ! vagrant plugin install vagrant-centos7_fix; then
463       printf '%s\n' 'deploy.sh: Warning: unable to install vagrant centos7 workaround' >&2
464     fi
465   else
466     printf '%s\n' 'deploy.sh: Skipping Vagrant plugin as centos7 workaround is already installed.'
467   fi
468 }
469
470
471 ##remove bgs vagrant incase it wasn't cleaned up
472 ##params: none
473 ##usage: clean_tmp()
474 clean_tmp() {
475   rm -rf $vm_dir/foreman_vm
476 }
477
478 ##clone genesis and move to node vm dir
479 ##params: destination directory
480 ##usage: clone_bgs /tmp/myvm/
481 clone_bgs() {
482   script=`realpath $0`
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       cd /tmp/
997
998       ##remove VM nodes incase it wasn't cleaned up
999       rm -rf $vm_dir/$node
1000       rm -rf /tmp/genesis/
1001
1002       ##clone genesis and move into node folder
1003       clone_bgs $vm_dir/$node
1004
1005       cd $vm_dir/$node
1006
1007       if [ $base_config ]; then
1008         if ! cp -f $base_config opnfv_ksgen_settings.yml; then
1009           echo "${red}ERROR: Unable to copy $base_config to opnfv_ksgen_settings.yml${reset}"
1010           exit 1
1011         fi
1012       fi
1013
1014       ##parse yaml into variables
1015       eval $(parse_yaml opnfv_ksgen_settings.yml "config_")
1016       ##find node type
1017       node_type=config_nodes_${node}_type
1018       node_type=$(eval echo \$$node_type)
1019
1020       ##trozet test make compute nodes wait 20 minutes
1021       if [ "$compute_wait_completed" = false ] && [ "$node_type" != "controller" ]; then
1022         echo "${blue}Waiting 20 minutes for Control nodes to install before continuing with Compute nodes..."
1023         compute_wait_completed=true
1024         sleep 1400
1025       fi
1026
1027       ## Add Admin interface
1028       mac_string=config_nodes_${node}_mac_address
1029       mac_addr=$(eval echo \$$mac_string)
1030       mac_addr=$(echo $mac_addr | sed 's/:\|-//g')
1031       if [ $mac_addr == "" ]; then
1032         echo "${red} Unable to find mac_address for $node! ${reset}"
1033         exit 1
1034       fi
1035       this_admin_ip=${admin_ip_arr[$node]}
1036       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
1037
1038       ## Add private interface
1039       if [ "$node_type" == "controller" ]; then
1040           mac_string=config_nodes_${node}_private_mac
1041           mac_addr=$(eval echo \$$mac_string)
1042           if [ $mac_addr == "" ]; then
1043             echo "${red} Unable to find private_mac for $node! ${reset}"
1044             exit 1
1045           fi
1046       else
1047           ##generate random mac
1048           mac_addr=$(echo -n 00-60-2F; dd bs=1 count=3 if=/dev/random 2>/dev/null |hexdump -v -e '/1 "-%02X"')
1049       fi
1050       mac_addr=$(echo $mac_addr | sed 's/:\|-//g')
1051       if [ "$node_type" == "controller" ]; then
1052         new_node_ip=${controllers_ip_arr[$controller_count]}
1053         if [ ! "$new_node_ip" ]; then
1054           echo "{red}ERROR: Empty node ip for controller $controller_count ${reset}"
1055           exit 1
1056         fi
1057         ((controller_count++))
1058       else
1059         next_private_ip=$(next_ip $next_private_ip)
1060         if [ ! "$next_private_ip" ]; then
1061           echo "{red}ERROR: Could not find private ip for $node ${reset}"
1062           exit 1
1063         fi
1064         new_node_ip=$next_private_ip
1065       fi
1066       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
1067       ##replace host_ip in vm_nodes_provision with private ip
1068       sed -i 's/^host_ip=REPLACE/host_ip='$new_node_ip'/' vm_nodes_provision.sh
1069       ##replace ping site
1070       if [ ! -z "$ping_site" ]; then
1071         sed -i 's/www.google.com/'$ping_site'/' vm_nodes_provision.sh
1072       fi
1073
1074       ##find public ip info and add public interface
1075       mac_addr=$(echo -n 00-60-2F; dd bs=1 count=3 if=/dev/random 2>/dev/null |hexdump -v -e '/1 "-%02X"')
1076       mac_addr=$(echo $mac_addr | sed 's/:\|-//g')
1077       this_public_ip=${public_ip_arr[$node]}
1078
1079       if [ -z "$enable_virtual_dhcp" ]; then
1080         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
1081       else
1082         sed -i 's/^.*eth_replace2.*$/  config.vm.network "public_network", bridge: '\'"$public_interface"\'', :mac => '\""$mac_addr"\"'/' Vagrantfile
1083       fi
1084       remove_vagrant_network eth_replace3
1085
1086       ##modify provisioning to do puppet install, config, and foreman check-in
1087       ##substitute host_name and dns_server in the provisioning script
1088       host_string=config_nodes_${node}_hostname
1089       host_name=$(eval echo \$$host_string)
1090       sed -i 's/^host_name=REPLACE/host_name='$host_name'/' vm_nodes_provision.sh
1091       ##dns server should be the foreman server
1092       sed -i 's/^dns_server=REPLACE/dns_server='${interface_ip_arr[0]}'/' vm_nodes_provision.sh
1093       ## remove bootstrap and NAT provisioning
1094       sed -i '/nat_setup.sh/d' Vagrantfile
1095       sed -i 's/bootstrap.sh/vm_nodes_provision.sh/' Vagrantfile
1096       ## modify default_gw to be node_default_gw
1097       sed -i 's/^.*default_gw =.*$/  default_gw = '\""$node_default_gw"\"'/' Vagrantfile
1098       ## modify VM memory to be 4gig
1099       ##if node type is controller
1100       if [ "$node_type" == "controller" ]; then
1101         sed -i 's/^.*vb.memory =.*$/     vb.memory = 4096/' Vagrantfile
1102       fi
1103       echo "${blue}Starting Vagrant Node $node! ${reset}"
1104       ##stand up vagrant
1105       if ! vagrant up; then
1106         echo "${red} Unable to start $node ${reset}"
1107         exit 1
1108       else
1109         echo "${blue} $node VM is up! ${reset}"
1110       fi
1111     done
1112     echo "${blue} All VMs are UP! ${reset}"
1113     echo "${blue} Waiting for puppet to complete on the nodes... ${reset}"
1114     ##check puppet is complete
1115     ##ssh into foreman server, run check to verify puppet is complete
1116     pushd $vm_dir/foreman_vm
1117     if ! vagrant ssh -c "/opt/khaleesi/run.sh --no-logs --use /vagrant/opnfv_ksgen_settings.yml /opt/khaleesi/playbooks/validate_opnfv-vm.yml"; then
1118       echo "${red} Failed to validate puppet completion on nodes ${reset}"
1119       exit 1
1120     else
1121       echo "{$blue} Puppet complete on all nodes! ${reset}"
1122     fi
1123     popd
1124     ##add routes back to nodes
1125     for node in ${nodes}; do
1126       pushd $vm_dir/$node
1127       if ! vagrant ssh -c "route | grep default | grep $this_default_gw"; then
1128         echo "${blue} Adding public route back to $node! ${reset}"
1129         vagrant ssh -c "route add default gw $this_default_gw"
1130       fi
1131       popd
1132     done
1133     if [ ! -z "$horizon_public_vip" ]; then
1134       echo "${blue} Virtual deployment SUCCESS!! Foreman URL:  http://${foreman_ip}, Horizon URL: http://${horizon_public_vip} ${reset}"
1135     else
1136       echo "${blue} Virtual deployment SUCCESS!! Foreman URL:  http://${foreman_ip}, Horizon URL: http://${odl_control_ip} ${reset}"
1137     fi
1138   fi
1139 }
1140
1141 ##check to make sure nodes are powered off
1142 ##this function does nothing if virtual
1143 ##params: none
1144 ##usage: check_baremetal_nodes()
1145 check_baremetal_nodes() {
1146   if [ $virtual ]; then
1147     echo "${blue}Skipping Baremetal node power status check as deployment is virtual ${reset}"
1148   else
1149     echo "${blue}Checking Baremetal nodes power state... ${reset}"
1150     if [ ! -z "$base_config" ]; then
1151       # Install ipmitool
1152       # Major version is pinned to force some consistency for Arno
1153       if ! yum list installed | grep -i ipmitool; then
1154         echo "${blue}Installing ipmitool...${reset}"
1155         if ! yum -y install ipmitool-1*; then
1156           echo "${red}Failed to install ipmitool!${reset}"
1157           exit 1
1158         fi
1159       fi
1160
1161         ###find all the bmc IPs and number of nodes
1162       node_counter=0
1163       output=`grep bmc_ip $base_config | grep -Eo '[0-9]+.[0-9]+.[0-9]+.[0-9]+'`
1164       for line in ${output} ; do
1165         bmc_ip[$node_counter]=$line
1166         ((node_counter++))
1167       done
1168
1169       max_nodes=$((node_counter-1))
1170
1171       ###find bmc_users per node
1172       node_counter=0
1173       output=`grep bmc_user $base_config | sed 's/\s*bmc_user:\s*//'`
1174       for line in ${output} ; do
1175         bmc_user[$node_counter]=$line
1176         ((node_counter++))
1177       done
1178
1179       ###find bmc_pass per node
1180       node_counter=0
1181       output=`grep bmc_pass $base_config | sed 's/\s*bmc_pass:\s*//'`
1182       for line in ${output} ; do
1183         bmc_pass[$node_counter]=$line
1184         ((node_counter++))
1185       done
1186
1187       for mynode in `seq 0 $max_nodes`; do
1188         echo "${blue}Node: ${bmc_ip[$mynode]} ${bmc_user[$mynode]} ${bmc_pass[$mynode]} ${reset}"
1189         ipmi_output=`ipmitool -I lanplus -P ${bmc_pass[$mynode]} -U ${bmc_user[$mynode]} -H ${bmc_ip[$mynode]} chassis status \
1190                     | grep "System Power" | cut -d ':' -f2 | tr -d [:blank:]`
1191         if [ "$ipmi_output" == "on" ]; then
1192           echo "${red}Error: Node is powered on: ${bmc_ip[$mynode]} ${reset}"
1193           echo "${red}Please run clean.sh before running deploy! ${reset}"
1194           exit 1
1195         elif [ "$ipmi_output" == "off" ]; then
1196           echo "${blue}Node: ${bmc_ip[$mynode]} is powered off${reset}"
1197         else
1198           echo "${red}Warning: Unable to detect node power state: ${bmc_ip[$mynode]} ${reset}"
1199         fi
1200       done
1201     else
1202       echo "${red}base_config was not provided for a baremetal install! Exiting${reset}"
1203       exit 1
1204     fi
1205   fi
1206 }
1207
1208 ##END FUNCTIONS
1209
1210 main() {
1211   parse_cmdline "$@"
1212   disable_selinux
1213   check_baremetal_nodes
1214   install_EPEL
1215   install_vbox
1216   install_ansible
1217   install_vagrant
1218   clean_tmp
1219   verify_vm_dir
1220   clone_bgs $vm_dir/foreman_vm
1221   configure_network
1222   configure_virtual
1223   start_foreman
1224   start_virtual_nodes
1225 }
1226
1227 main "$@"