blob: 4ace5a0d69fbf5bad007cb2b7ce38c3c9b5b8b22 [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
Stephane Barbariebcea2f42018-03-02 18:46:32 -050038 sed -i -e "/logger_volume_size/s/.*/logger_volume_size: ${logLimit}/" ansible/group_vars/all
Sergio Slobodrian8725ea82017-08-27 23:47:41 -040039fi
40if [ -v regLimit ]; then
Stephane Barbariebcea2f42018-03-02 18:46:32 -050041 sed -i -e "/registry_volume_size/s/.*/registry_volume_size: ${regLimit}/" ansible/group_vars/all
Sergio Slobodrian8725ea82017-08-27 23:47:41 -040042fi
43if [ -v consulLimit ]; then
Stephane Barbariebcea2f42018-03-02 18:46:32 -050044 sed -i -e "/consul_volume_size/s/.*/consul_volume_size: ${consulLimit}/" ansible/group_vars/all
Sergio Slobodrian8725ea82017-08-27 23:47:41 -040045fi
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
Stephane Barbariebcea2f42018-03-02 18:46:32 -050063 # 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
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040067
Stephane Barbariebcea2f42018-03-02 18:46:32 -050068 # Generate the pre-configuration script
69 echo -e "${lBlue}Creating the pre-configuration script${NC}"
70 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
74 cat $i.pub >> bash_login.sh
75 tail -n +2 BashLoginTarget.sh | grep -v "{{ key }}" >> bash_login.sh
76 rm $i.pub
Sergio Slobodrianb92e5132017-09-13 13:04:05 -040077
Stephane Barbariebcea2f42018-03-02 18:46:32 -050078 # 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}"
82 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .test/$i bash_login.sh $iUser@$i:.bash_login
83 else
84 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no bash_login.sh $iUser@$i:.bash_login
85 fi
86 rm bash_login.sh
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040087
Stephane Barbariebcea2f42018-03-02 18:46:32 -050088 # 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}"
92 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .test/$i $iUser@$i
93 else
94 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $iUser@$i
95 fi
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040096
Stephane Barbariebcea2f42018-03-02 18:46:32 -050097 # 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
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400101
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500102 # 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
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400106done
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400107
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400108# Add the dependent software list to the cluster variables
109echo -e "${lBlue}Setting up dependent software${NC}"
110# Delete any grub updates since the boot disk is almost
111# guaranteed not to be the same device as the installer.
112mkdir grub_updates
113sudo mv deb_files/*grub* grub_updates
114# Sort the packages in dependency order to get rid of scary non-errors
115# that are issued by ansible.
116#echo -e "${lBlue}Dependency sorting dependent software${NC}"
117#./sort_packages.sh
118#echo "deb_files:" >> ansible/group_vars/all
119#for i in `cat sortedDebs.txt`
120#do
121#echo " - $i" >> ansible/group_vars/all
122#done
123
124# Make sure the ssh keys propagate to all hosts allowing passwordless logins between them
125echo -e "${lBlue}Propagating ssh keys${NC}"
Sergio Slobodrian37f4a0e2017-06-14 07:50:01 -0400126cp -r .keys ansible/roles/cluster-host/files
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400127
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400128# Install python on all the 3 servers since python is required for
129for i in $hosts
130do
131 echo -e "${lBlue}Installing ${lCyan}Python${lBlue}${NC}"
132 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i -r python-deb voltha@$i:.
133 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i "sudo dpkg -i /home/voltha/python-deb/*minimal*"
134 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i sudo dpkg -i -R /home/voltha/python-deb
135 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i rm -fr python-deb
136
137done
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400138
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500139if [ "$cluster_framework" == "kubernetes" ]; then
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400140
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400141 echo -e "${green}Deploying kubernetes${NC}"
Sergio Slobodrian9d9c8442017-07-25 07:55:42 -0400142
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400143 # Remove previously created inventory if it exists
144 cp -rfp kubespray/inventory kubespray/inventory/voltha
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -0400145
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400146 # Adjust kubespray configuration
Sergio Slobodrian37f4a0e2017-06-14 07:50:01 -0400147
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400148 # Destination OS
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500149 sed -i -e "/bootstrap_os: none/s/.*/bootstrap_os: ubuntu/" \
150 kubespray/inventory/voltha/group_vars/all.yml
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400151
152 # Subnet used for deployed k8s services
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500153 sed -i -e "/kube_service_addresses: 10.233.0.0\/18/s/.*/kube_service_addresses: $cluster_service_subnet/" \
154 kubespray/inventory/voltha/group_vars/k8s-cluster.yml
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400155
156 # Subnet used for deployed k8s pods
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500157 sed -i -e "/kube_pods_subnet: 10.233.64.0\/18/s/.*/kube_pods_subnet: $cluster_pod_subnet/" \
158 kubespray/inventory/voltha/group_vars/k8s-cluster.yml
Sergio Slobodrian37f4a0e2017-06-14 07:50:01 -0400159
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400160 # Prevent any downloads from kubespray
161 sed -i -e "s/skip_downloads: false/skip_downloads: true/" \
162 kubespray/cluster.yml
163 sed -i -e "s/- { role: docker, tags: docker }/#&/" \
164 kubespray/cluster.yml
165 sed -i -e "s/skip_downloads: false/skip_downloads: true/" \
166 kubespray/roles/download/defaults/main.yml
167 sed -i -e "s/when: ansible_os_family == \"Debian\"/& and skip_downloads == \"false\" /" \
168 kubespray/roles/kubernetes/preinstall/tasks/main.yml
169 sed -i -e "s/or is_atomic)/& and skip_downloads == \"false\" /" \
170 kubespray/roles/kubernetes/preinstall/tasks/main.yml
171
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400172 # Construct node inventory
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500173 CONFIG_FILE=kubespray/inventory/voltha/hosts.ini python3 \
174 kubespray/contrib/inventory_builder/inventory.py $hosts
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400175
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400176 ordered_nodes=`CONFIG_FILE=kubespray/inventory/voltha/hosts.ini python3 \
177 kubespray/contrib/inventory_builder/inventory.py print_ips`
178
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500179 # The inventory defines
180 sed -i -e '/\[kube-master\]/a\
181 node3
182 ' kubespray/inventory/voltha/hosts.ini
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400183
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500184 echo "[k8s-master]" > ansible/hosts/k8s-master
185
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400186 mkdir -p kubespray/inventory/voltha/host_vars
187
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500188 ctr=1
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400189 for i in $ordered_nodes
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500190 do
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400191 echo -e "${lBlue}Adding SSH keys to kubespray ansible${NC}"
192 echo "ansible_ssh_private_key_file: $wd/.keys/$i" > kubespray/inventory/voltha/host_vars/node$ctr
193
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400194 if [ $ctr -eq 1 ]; then
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500195 echo $i >> ansible/hosts/k8s-master
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400196 fi
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400197 ctr=$((ctr + 1))
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500198 done
Sergio Slobodriand24189e2017-06-10 23:27:15 -0400199
Stephane Barbarie2cbffca2018-03-26 16:20:03 -0400200 # Prepare Voltha
201 # ... Prepares environment and copies all required container images
202 # ... including the ones needed by kubespray
203 cp ansible/ansible.cfg .ansible.cfg
204 ansible-playbook -v ansible/voltha-k8s.yml -i ansible/hosts/cluster -e 'config_voltha=true'
205
206 # Deploy kubernetes
207 ANSIBLE_CONFIG=kubespray/ansible.cfg ansible-playbook -v -b \
208 --become-method=sudo --become-user root -u voltha \
209 -i kubespray/inventory/voltha/hosts.ini kubespray/cluster.yml
210
211 # Deploy Voltha
212 ansible-playbook -v ansible/voltha-k8s.yml -i ansible/hosts/k8s-master -e 'deploy_voltha=true'
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500213
214else
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500215 # Legacy swarm instructions
Stephane Barbariebcea2f42018-03-02 18:46:32 -0500216
217 # Create the daemon.json file for the swarm
218 echo "{" > daemon.json
219 echo -n ' "insecure-registries" : [' >> daemon.json
220 first=""
221 for i in .keys/*
222 do
223 if [ -z "$first" ]; then
224 echo -n '"'`basename $i`':5001"' >> daemon.json
225 first="not"
226 else
227 echo -n ' , "'`basename $i`':5001"' >> daemon.json
228 fi
229 done
230 echo "]" >> daemon.json
231 echo "}" >> daemon.json
232 unset first
233
234 # Running ansible
235 echo -e "${lBlue}Running ansible${NC}"
236 cp ansible/ansible.cfg .ansible.cfg
237 ansible-playbook ansible/voltha.yml -i ansible/hosts/cluster
238
239 # Now all 3 servers need to be rebooted because of software installs.
240 # Reboot them and wait patiently until they all come back.
241 # Note this destroys the registry tunnel wich is no longer needed.
242 hList=""
243 for i in $hosts
244 do
245 echo -e "${lBlue}Rebooting cluster hosts${NC}"
246 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i .keys/$i voltha@$i sudo telinit 6
247 hList="$i $hList"
248 done
249
250 # Give the hosts time to shut down so that pings stop working or the
251 # script just falls through the next loop and the rest fails.
252 echo -e "${lBlue}Waiting for shutdown${NC}"
253 sleep 5
254
255
256 while [ ! -z "$hList" ];
257 do
258 # Attempt to ping the VMs on the list one by one.
259 echo -e "${lBlue}Waiting for hosts to reboot ${yellow}$hList${NC}"
260 for i in $hList
261 do
262 ping -q -c 1 $i > /dev/null 2>&1
263 ret=$?
264 if [ $ret -eq 0 ]; then
265 ipExpr=`echo $i | sed -e "s/\./[.]/g"`
266 hList=`echo $hList | sed -e "s/$ipExpr//" | sed -e "s/^ //" | sed -e "s/ $//"`
267 fi
268 done
269
270 done
271
272 # Now initialize the the docker swarm cluster with managers.
273 # The first server needs to be the primary swarm manager
274 # the other nodes are backup mangers that join the swarm.
275 # In the future, worker nodes will likely be added.
276
277 echo "[swarm-master]" > ansible/hosts/swarm-master
278 echo "[swarm-master-backup]" > ansible/hosts/swarm-master-backup
279
280 ctr=1
281 for i in $hosts
282 do
283 if [ $ctr -eq 1 ]; then
284 echo $i >> ansible/hosts/swarm-master
285 echo "swarm_master_addr: \"$i\"" >> ansible/group_vars/all
286 ctr=0
287 else
288 echo $i >> ansible/hosts/swarm-master-backup
289 fi
290 done
291 ansible-playbook ansible/swarm.yml -i ansible/hosts/swarm-master
292 ansible-playbook ansible/swarm.yml -i ansible/hosts/swarm-master-backup
293 ansible-playbook ansible/voltha.yml -i ansible/hosts/swarm-master
294
295fi