blob: f1f9732d9933caf341d2bcd009c7dbc37c5ac206 [file] [log] [blame]
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04001#!/bin/bash
2
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04003lBlue='\033[1;34m'
4green='\033[0;32m'
5orange='\033[0;33m'
6NC='\033[0m'
7red='\033[0;31m'
8yellow='\033[1;33m'
9dGrey='\033[1;30m'
10lGrey='\033[1;37m'
11lCyan='\033[1;36m'
12wd=`pwd`
13
14
15# Clean up any prior executions
16rm -fr .keys
17rm -f ansible/hosts/cluster
18rm -f ansible/host_vars/*
19
20# Source the configuration information
21. install.cfg
22
Sergio Slobodrian37f4a0e2017-06-14 07:50:01 -040023if [ -z "$hosts" ]; then
24 echo -e "${red}No hosts specifed!!${NC}"
25 echo -e "${red}Did you forget to update the config file ${yellow}installer.cfg${red}?${NC}"
26 exit
27fi
28
Sergio Slobodrianb92e5132017-09-13 13:04:05 -040029if [ "$iUser" == "voltha" ]; then
30 echo -e "${yellow}voltha ${red}can't be used as be install user!!!${NC}"
31 echo -e "${red}Please delete the ${yellow}voltha ${red}user on the targets and create a different installation user${NC}"
32 exit
33fi
34
Sergio Slobodrian8725ea82017-08-27 23:47:41 -040035# Configure barrier file sizes but only if a value was provided in the config file
36
37if [ -v logLimit ]; then
38 sed -i -e "/logger_volume_size/s/.*/logger_volume_size: ${logLimit}/" ansible/group_vars/all
39fi
40if [ -v regLimit ]; then
41 sed -i -e "/registry_volume_size/s/.*/registry_volume_size: ${regLimit}/" ansible/group_vars/all
42fi
43if [ -v consulLimit ]; then
44 sed -i -e "/consul_volume_size/s/.*/consul_volume_size: ${consulLimit}/" ansible/group_vars/all
45fi
46
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040047# Create the key directory
48mkdir .keys
49
50# Create the host list
51echo "[cluster]" > ansible/hosts/cluster
52
53# Silence SSH and avoid prompts
54rm -f ~/.ssh/config
55echo "Host *" > ~/.ssh/config
56echo " StrictHostKeyChecking no" >> ~/.ssh/config
57echo " UserKnownHostsFile /dev/null" >> ~/.ssh/config
58
59sudo cp ~/.ssh/config /root/.ssh/config
60
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040061for i in $hosts
62do
63 # Generate the key for the host
64 echo -e "${lBlue}Generating the key-pair for communication with host ${yellow}$i${NC}"
65 ssh-keygen -f ./$i -t rsa -N ''
66 mv $i .keys
67
68 # Generate the pre-configuration script
69 echo -e "${lBlue}Creating the pre-configuration script${NC}"
Sergio Slobodrianb92e5132017-09-13 13:04:05 -040070 head -n +1 BashLoginTarget.sh > bash_login.sh
71 echo "" >> bash_login.sh
72 echo -n 'key="' >> bash_login.sh
73 sed -i -e 's/$/"/' $i.pub
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040074 cat $i.pub >> bash_login.sh
Sergio Slobodrianb92e5132017-09-13 13:04:05 -040075 tail -n +2 BashLoginTarget.sh | grep -v "{{ key }}" >> bash_login.sh
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040076 rm $i.pub
Sergio Slobodrianb92e5132017-09-13 13:04:05 -040077
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040078 # Copy the pre-config file to the VM
79 echo -e "${lBlue}Transfering pre-configuration script to ${yellow}$i${NC}"
80 if [ -d ".test" ]; then
81 echo -e "${red}Test mode set!!${lBlue} Using pre-populated ssh key for ${yellow}$i${NC}"
Sergio Slobodrianc5477712017-06-07 11:56:56 -040082 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .test/$i bash_login.sh $iUser@$i:.bash_login
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040083 else
Sergio Slobodrianc5477712017-06-07 11:56:56 -040084 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no bash_login.sh $iUser@$i:.bash_login
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040085 fi
86 rm bash_login.sh
87
88 # Run the pre-config file on the VM
89 echo -e "${lBlue}Running the pre-configuration script on ${yellow}$i${NC}"
90 if [ -d ".test" ]; then
91 echo -e "${red}Test mode set!!${lBlue} Using pre-populated ssh key for ${yellow}$i${NC}"
Sergio Slobodrianc5477712017-06-07 11:56:56 -040092 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .test/$i $iUser@$i
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040093 else
Sergio Slobodrianc5477712017-06-07 11:56:56 -040094 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $iUser@$i
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040095 fi
96
97 # Configure ansible and ssh for silent operation
98 echo -e "${lBlue}Configuring ansible${NC}"
99 echo $i >> ansible/hosts/cluster
100 echo "ansible_ssh_private_key_file: $wd/.keys/$i" > ansible/host_vars/$i
101
102 # Create the tunnel to the registry to allow pulls from localhost
103 echo -e "${lBlue}Creating a secure shell tunnel to the registry for ${yellow}$i${NC}"
104 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i -f voltha@$i -R 5000:localhost:5000 -N
105
106done
107# Add the dependent software list to the cluster variables
108echo -e "${lBlue}Setting up dependent software${NC}"
Sergio Slobodrian263900e2017-06-16 21:39:04 -0400109# Delete any grub updates since the boot disk is almost
110# guaranteed not to be the same device as the installer.
111mkdir grub_updates
112sudo mv deb_files/*grub* grub_updates
Sergio Slobodrianba9cbd82017-06-22 11:45:49 -0400113# Sort the packages in dependency order to get rid of scary non-errors
114# that are issued by ansible.
115#echo -e "${lBlue}Dependency sorting dependent software${NC}"
116#./sort_packages.sh
117#echo "deb_files:" >> ansible/group_vars/all
118#for i in `cat sortedDebs.txt`
119#do
120#echo " - $i" >> ansible/group_vars/all
121#done
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400122
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400123# Make sure the ssh keys propagate to all hosts allowing passwordless logins between them
124echo -e "${lBlue}Propagating ssh keys${NC}"
Sergio Slobodrian37f4a0e2017-06-14 07:50:01 -0400125cp -r .keys ansible/roles/cluster-host/files
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400126
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400127# Install python on all the 3 servers since python is required for
128for i in $hosts
129do
Sergio Slobodriancd43feb2017-07-25 16:26:38 -0400130 echo -e "${lBlue}Installing ${lCyan}Python${lBlue}${NC}"
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400131 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i -r python-deb voltha@$i:.
Sergio Slobodriancd43feb2017-07-25 16:26:38 -0400132 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i "sudo dpkg -i /home/voltha/python-deb/*minimal*"
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400133 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i sudo dpkg -i -R /home/voltha/python-deb
134 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i rm -fr python-deb
135
136done
137
Sergio Slobodrian7c5e8852017-07-31 20:17:14 -0400138# Create the daemon.json file for the swarm
139echo "{" > daemon.json
140echo -n ' "insecure-registries" : [' >> daemon.json
141first=""
142for i in .keys/*
143do
144 if [ -z "$first" ]; then
145 echo -n '"'`basename $i`':5001"' >> daemon.json
146 first="not"
147 else
148 echo -n ' , "'`basename $i`':5001"' >> daemon.json
149 fi
150done
151echo "]" >> daemon.json
152echo "}" >> daemon.json
153unset first
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400154
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400155# Running ansible
156echo -e "${lBlue}Running ansible${NC}"
157cp ansible/ansible.cfg .ansible.cfg
Sergio Slobodrian5727e982017-06-28 21:02:27 -0400158ansible-playbook ansible/voltha.yml -i ansible/hosts/cluster
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400159
Sergio Slobodrian37f4a0e2017-06-14 07:50:01 -0400160# Now all 3 servers need to be rebooted because of software installs.
161# Reboot them and wait patiently until they all come back.
162# Note this destroys the registry tunnel wich is no longer needed.
163hList=""
164for i in $hosts
165do
166 echo -e "${lBlue}Rebooting cluster hosts${NC}"
167 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i sudo telinit 6
168 hList="$i $hList"
169done
170
171# Give the hosts time to shut down so that pings stop working or the
172# script just falls through the next loop and the rest fails.
173echo -e "${lBlue}Waiting for shutdown${NC}"
174sleep 5
175
176
177while [ ! -z "$hList" ];
178do
179 # Attempt to ping the VMs on the list one by one.
180 echo -e "${lBlue}Waiting for hosts to reboot ${yellow}$hList${NC}"
181 for i in $hList
182 do
183 ping -q -c 1 $i > /dev/null 2>&1
184 ret=$?
185 if [ $ret -eq 0 ]; then
186 ipExpr=`echo $i | sed -e "s/\./[.]/g"`
187 hList=`echo $hList | sed -e "s/$ipExpr//" | sed -e "s/^ //" | sed -e "s/ $//"`
188 fi
189 done
190
191done
192
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400193# Now initialize the the docker swarm cluster with managers.
194# The first server needs to be the primary swarm manager
195# the other nodes are backup mangers that join the swarm.
196# In the future, worker nodes will likely be added.
197
198echo "[swarm-master]" > ansible/hosts/swarm-master
199echo "[swarm-master-backup]" > ansible/hosts/swarm-master-backup
200
201ctr=1
202for i in $hosts
203do
204 if [ $ctr -eq 1 ]; then
205 echo $i >> ansible/hosts/swarm-master
206 echo "swarm_master_addr: \"$i\"" >> ansible/group_vars/all
207 ctr=0
208 else
209 echo $i >> ansible/hosts/swarm-master-backup
210 fi
211done
Sergio Slobodrian5727e982017-06-28 21:02:27 -0400212ansible-playbook ansible/swarm.yml -i ansible/hosts/swarm-master
213ansible-playbook ansible/swarm.yml -i ansible/hosts/swarm-master-backup
214ansible-playbook ansible/voltha.yml -i ansible/hosts/swarm-master
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400215