added the labconfig file for att virpod1. Remove the mac
[joid.git] / ci / 02-maasdeploy.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 virtinstall=0
6 labname=$1
7
8 #install the packages needed
9 sudo apt-add-repository ppa:maas-deployers/stable -y
10 sudo apt-add-repository ppa:juju/stable -y
11 sudo apt-add-repository ppa:maas/stable -y
12 sudo apt-add-repository cloud-archive:liberty -y
13 sudo apt-get update -y
14 sudo apt-get dist-upgrade -y
15 sudo apt-get install openssh-server git maas-deployer juju juju-deployer maas-cli python-pip python-openstackclient gsutil -y
16
17 #first parameter should be custom and second should be either 
18 # absolute location of file (including file name) or url of the 
19 # file to download.
20
21 if [ "$1" == "custom" ]; then
22     if [ -e $2 ]; then
23         cp $2 ./labconfig.yaml || true
24         python deploy.py
25     else
26         wget $2 -t 3 -T 10 -O ./labconfig.yaml || true
27         count=`wc -l labconfig.yaml  | cut -d " " -f 1`
28
29         if [ $count -lt 10 ]; then
30             rm -rf labconfig.yaml
31         else
32             python deploy.py
33         fi
34     fi
35
36     if [ ! -e ./labconfig.yaml ]; then
37         virtinstall=1
38         cp ../labconfig/default/deployment.yaml ./
39         cp ../labconfig/default/labconfig.yaml ./
40     fi
41     labname=`grep "maas_name" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
42 else
43     case "$1" in
44         'intelpod5' )
45             cp ../labconfig/intel/pod5/labconfig.yaml ./
46             #to be removed later once converted for all labs.
47             python deploy.py
48             ;;
49         'intelpod6' )
50             cp ../labconfig/intel/pod6/labconfig.yaml ./
51             #to be removed later once converted for all labs.
52             python deploy.py
53             ;;
54         'intelpod9' )
55             cp ../labconfig/intel/pod6/labconfig.yaml ./
56             #to be removed later once converted for all labs.
57             python deploy.py
58             ;;
59         'orangepod1' )
60             cp ../labconfig/orange/pod1/labconfig.yaml ./
61             #to be removed later once converted for all labs.
62             python deploy.py
63             ;;
64         'orangepod2' )
65             cp ../labconfig/orange/pod1/labconfig.yaml ./
66             #to be removed later once converted for all labs.
67             python deploy.py
68             ;;
69         'attvirpod1' )
70             cp ../labconfig/att/virpod1/labconfig.yaml ./
71             #to be removed later once converted for all labs.
72             python deploy.py
73             ;;
74         'juniperpod1' )
75             cp maas/juniper/pod1/deployment.yaml ./deployment.yaml
76             ;;
77         'cengnlynxpod1' )
78             cp maas/cengn_lynx/pod1/deployment.yaml ./deployment.yaml
79             ;;
80         * )
81             virtinstall=1
82             labname="default"
83             ./cleanvm.sh
84             cp ../labconfig/default/deployment.yaml ./
85             ;;
86     esac
87 fi
88
89 #make sure no password asked during the deployment.
90
91 echo "$USER ALL=(ALL) NOPASSWD:ALL" > 90-joid-init
92
93 if [ -e /etc/sudoers.d/90-joid-init ]; then
94     sudo cp /etc/sudoers.d/90-joid-init 91-joid-init
95     sudo chown $USER:$USER 91-joid-init
96     sudo chmod 660 91-joid-init
97     sudo cat 90-joid-init >> 91-joid-init
98     sudo chown root:root 91-joid-init
99     sudo mv 91-joid-init /etc/sudoers.d/
100 else
101     sudo chown root:root 90-joid-init
102     sudo mv 90-joid-init /etc/sudoers.d/
103 fi
104
105 echo "... Deployment of maas Started ...."
106
107 if [ ! -e $HOME/.ssh/id_rsa ]; then
108     ssh-keygen -N '' -f $HOME/.ssh/id_rsa
109 fi
110
111 #define the pool and try to start even though its already exist.
112 # For fresh install this may or may not there.
113
114 sudo apt-get install libvirt-bin -y
115 sudo adduser $USER libvirtd
116 sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true
117 sudo virsh pool-start default || true
118 sudo virsh pool-autostart default || true
119
120 # To avoid problem between apiclient/maas_client and apiclient from google
121 # we remove the package google-api-python-client from yardstick installer
122 if [ $(pip list |grep google-api-python-client |wc -l) == 1 ]; then
123     sudo pip uninstall google-api-python-client
124 fi
125
126 sudo pip install shyaml
127 juju init -f
128
129 cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
130
131 if [ "$virtinstall" -eq 1 ]; then
132     sudo virsh net-dumpxml default > default-net-org.xml
133     sudo sed -i '/dhcp/d' default-net-org.xml
134     sudo sed -i '/range/d' default-net-org.xml
135     sudo virsh net-define default-net-org.xml
136     sudo virsh net-destroy default
137     sudo virsh net-start default
138 fi
139
140 #Below function will mark the interfaces in Auto mode to enbled by MAAS
141 enableautomode() {
142     listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
143     for nodes in $listofnodes
144     do
145         maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3
146     done
147 }
148
149 #Below function will mark the interfaces in Auto mode to enbled by MAAS
150 # using hostname of the node added into MAAS
151
152 enableautomodebyname() {
153     if [ ! -z "$4" ]; then
154         for i in `seq 1 7`;
155         do
156             nodes=`maas maas nodes list hostname=node$i-$4 | grep system_id | cut -d '"' -f 4`
157             if [ ! -z "$nodes" ]; then
158                 maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3
159             fi
160        done
161     fi
162 }
163
164 #Below function will create vlan and update interface with the new vlan
165 # will return the vlan id created
166 crvlanupdsubnet() {
167     newvlanid=`maas maas vlans create $2 name=$3 vid=$4 | grep resource | cut -d '/' -f 6 `
168     maas maas subnet update $5 vlan=$newvlanid
169     eval "$1"="'$newvlanid'"
170 }
171
172 #Below function will create interface with new vlan and bind to physical interface
173 crnodevlanint() {
174     listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
175
176     for nodes in $listofnodes
177     do
178         parentid=`maas maas interface read $nodes $2 | grep interfaces | cut -d '/' -f 8`
179         maas maas interfaces create-vlan $nodes vlan=$1 parent=$parentid
180      done
181  }
182
183 #just make sure the ssh keys added into maas for the current user
184 sed --i "s@/home/ubuntu@$HOME@g" ./deployment.yaml
185 sed --i "s@qemu+ssh://ubuntu@qemu+ssh://$USER@g" ./deployment.yaml
186
187 cp ./deployment.yaml ~/.juju/
188
189 if [ -e ./deployconfig.yaml ]; then
190     cp ./deployconfig.yaml ~/.juju/
191 fi
192
193 sudo maas-deployer -c deployment.yaml -d --force
194
195 sudo chown $USER:$USER environments.yaml
196
197 echo "... Deployment of maas finish ...."
198
199 maas_ip=`grep " ip_address" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
200 apikey=`grep maas-oauth: environments.yaml | cut -d "'" -f 2`
201 maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
202 maas maas sshkeys new key="`cat $HOME/.ssh/id_rsa.pub`"
203
204 #Added the Qtip public to run the Qtip test after install on bare metal nodes.
205 maas maas sshkeys new key="`cat ./maas/sshkeys/QtipKey.pub`"
206
207 #adding compute and control nodes VM to MAAS for deployment purpose.
208 if [ "$virtinstall" -eq 1 ]; then
209     # create two more VMs to do the deployment.
210     sudo virt-install --connect qemu:///system --name node1-control --ram 8192 --vcpus 4 --disk size=120,format=qcow2,bus=virtio,io=native,pool=default --network bridge=virbr0,model=virtio --network bridge=virbr0,model=virtio --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node1-control
211
212     sudo virt-install --connect qemu:///system --name node2-compute --ram 8192 --vcpus 4 --disk size=120,format=qcow2,bus=virtio,io=native,pool=default --network bridge=virbr0,model=virtio --network bridge=virbr0,model=virtio --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node2-compute
213
214     sudo virt-install --connect qemu:///system --name node5-compute --ram 8192 --vcpus 4 --disk size=120,format=qcow2,bus=virtio,io=native,pool=default --network bridge=virbr0,model=virtio --network bridge=virbr0,model=virtio --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node5-compute
215
216     node1controlmac=`grep  "mac address" node1-control | head -1 | cut -d "'" -f 2`
217     node2computemac=`grep  "mac address" node2-compute | head -1 | cut -d "'" -f 2`
218     node5computemac=`grep  "mac address" node5-compute | head -1 | cut -d "'" -f 2`
219
220     sudo virsh -c qemu:///system define --file node1-control
221     sudo virsh -c qemu:///system define --file node2-compute
222     sudo virsh -c qemu:///system define --file node5-compute
223
224     maas maas tags new name='control'
225     maas maas tags new name='compute'
226
227     controlnodeid=`maas maas nodes new autodetect_nodegroup='yes' name='node1-control' tags='control' hostname='node1-control' power_type='virsh' mac_addresses=$node1controlmac power_parameters_power_address='qemu+ssh://'$USER'@192.168.122.1/system' architecture='amd64/generic' power_parameters_power_id='node1-control' | grep system_id | cut -d '"' -f 4 `
228
229     maas maas tag update-nodes control add=$controlnodeid
230
231     computenodeid=`maas maas nodes new autodetect_nodegroup='yes' name='node2-compute' tags='compute' hostname='node2-compute' power_type='virsh' mac_addresses=$node2computemac power_parameters_power_address='qemu+ssh://'$USER'@192.168.122.1/system' architecture='amd64/generic' power_parameters_power_id='node2-compute' | grep system_id | cut -d '"' -f 4 `
232
233     maas maas tag update-nodes compute add=$computenodeid
234
235     computenodeid=`maas maas nodes new autodetect_nodegroup='yes' name='node5-compute' tags='compute' hostname='node5-compute' power_type='virsh' mac_addresses=$node5computemac power_parameters_power_address='qemu+ssh://'$USER'@192.168.122.1/system' architecture='amd64/generic' power_parameters_power_id='node5-compute' | grep system_id | cut -d '"' -f 4 `
236
237     maas maas tag update-nodes compute add=$computenodeid
238 fi
239
240 # Enable vlan interfaces with maas
241 case "$labname" in
242     'intelpod5' )
243         maas refresh
244         enableautomode eth4 AUTO "10.5.12.0/24" || true
245         ;;
246     'intelpod6' )
247         maas refresh
248         enableautomode eth4 AUTO "10.6.12.0/24" || true
249         ;;
250     'intelpod9' )
251         maas refresh
252         crvlanupdsubnet vlan902 1 "DataNetwork" 902 2 || true
253         crvlanupdsubnet vlan905 2 "PublicNetwork" 905 3 || true
254         crnodevlanint $vlan902 eth0 || true
255         crnodevlanint $vlan905 eth1 || true
256         enableautomodebyname eth0.902 AUTO "10.9.12.0/24" compute || true
257         enableautomodebyname eth1.905 AUTO "10.9.15.0/24" compute || true
258         enableautomodebyname eth0.902 AUTO "10.9.12.0/24" control || true
259         enableautomodebyname eth1.905 AUTO "10.9.15.0/24" control || true
260         ;;
261     'orangepod1' )
262         maas refresh
263         enableautomode eth2 DHCP "192.168.21.0/24" || true
264         enableautomode eth3 AUTO "192.168.11.0/24" || true
265         ;;
266     'orangepod2' )
267         maas refresh
268         enableautomode eth4 DHCP "192.168.22.0/24" || true
269         enableautomode eth2 DHCP "192.168.22.0/24" || true
270         enableautomode eth5 AUTO "192.168.12.0/24" || true
271         enableautomode eth3 AUTO "192.168.12.0/24" || true
272         ;;
273     'attvirpod1' )
274         enableautomode eth1 AUTO "192.168.10.0/24" || true
275         ;;
276     'juniperpod1' )
277         ;;
278     'cengnlynxpod1' )
279         maas refresh
280         crvlanupdsubnet vlan1201 1 "DataNetwork" 1201 2 || true
281         crvlanupdsubnet vlan1202 2 "PublicNetwork" 1202 3 || true
282         crnodevlanint $vlan1201 eth1 || true
283         crnodevlanint $vlan1202 eth1 || true
284         enableautomode eth1.1201 AUTO "172.16.121.3/24" compute || true
285         enableautomode eth1.1201 AUTO "172.16.121.3/24" control || true
286         ;;
287 esac
288
289 echo " .... MAAS deployment finished successfully ...."
290
291 #echo "... Deployment of opnfv release Started ...."
292 #python deploy.py $maas_ip