e7f9e8dc08c580c264e2c101639355fbb073fd28
[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 maas/att/virpod1/deployment.yaml ./deployment.yaml
71             ;;
72         'juniperpod1' )
73             cp maas/juniper/pod1/deployment.yaml ./deployment.yaml
74             ;;
75         'cengnlynxpod1' )
76             cp maas/cengn_lynx/pod1/deployment.yaml ./deployment.yaml
77             ;;
78         * )
79             virtinstall=1
80             labname="default"
81             ./cleanvm.sh
82             cp ../labconfig/default/deployment.yaml ./
83             ;;
84     esac
85 fi
86
87 #make sure no password asked during the deployment.
88
89 echo "$USER ALL=(ALL) NOPASSWD:ALL" > 90-joid-init
90
91 if [ -e /etc/sudoers.d/90-joid-init ]; then
92     sudo cp /etc/sudoers.d/90-joid-init 91-joid-init
93     sudo chown $USER:$USER 91-joid-init
94     sudo chmod 660 91-joid-init
95     sudo cat 90-joid-init >> 91-joid-init
96     sudo chown root:root 91-joid-init
97     sudo mv 91-joid-init /etc/sudoers.d/
98 else
99     sudo chown root:root 90-joid-init
100     sudo mv 90-joid-init /etc/sudoers.d/
101 fi
102
103 echo "... Deployment of maas Started ...."
104
105 if [ ! -e $HOME/.ssh/id_rsa ]; then
106     ssh-keygen -N '' -f $HOME/.ssh/id_rsa
107 fi
108
109 #define the pool and try to start even though its already exist.
110 # For fresh install this may or may not there.
111
112 sudo apt-get install libvirt-bin -y
113 sudo adduser $USER libvirtd
114 sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true
115 sudo virsh pool-start default || true
116 sudo virsh pool-autostart default || true
117
118 # To avoid problem between apiclient/maas_client and apiclient from google
119 # we remove the package google-api-python-client from yardstick installer
120 if [ $(pip list |grep google-api-python-client |wc -l) == 1 ]; then
121     sudo pip uninstall google-api-python-client
122 fi
123
124 sudo pip install shyaml
125 juju init -f
126
127 cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
128
129 if [ "$virtinstall" -eq 1 ]; then
130     sudo virsh net-dumpxml default > default-net-org.xml
131     sudo sed -i '/dhcp/d' default-net-org.xml
132     sudo sed -i '/range/d' default-net-org.xml
133     sudo virsh net-define default-net-org.xml
134     sudo virsh net-destroy default
135     sudo virsh net-start default
136 fi
137
138 #Below function will mark the interfaces in Auto mode to enbled by MAAS
139 enableautomode() {
140     listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
141     for nodes in $listofnodes
142     do
143         maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3
144     done
145 }
146
147 #Below function will mark the interfaces in Auto mode to enbled by MAAS
148 # using hostname of the node added into MAAS
149
150 enableautomodebyname() {
151     if [ ! -z "$4" ]; then
152         for i in `seq 1 7`;
153         do
154             nodes=`maas maas nodes list hostname=node$i-$4 | grep system_id | cut -d '"' -f 4`
155             if [ ! -z "$nodes" ]; then
156                 maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3
157             fi
158        done
159     fi
160 }
161
162 #Below function will create vlan and update interface with the new vlan
163 # will return the vlan id created
164 crvlanupdsubnet() {
165     newvlanid=`maas maas vlans create $2 name=$3 vid=$4 | grep resource | cut -d '/' -f 6 `
166     maas maas subnet update $5 vlan=$newvlanid
167     eval "$1"="'$newvlanid'"
168 }
169
170 #Below function will create interface with new vlan and bind to physical interface
171 crnodevlanint() {
172     listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
173
174     for nodes in $listofnodes
175     do
176         parentid=`maas maas interface read $nodes $2 | grep interfaces | cut -d '/' -f 8`
177         maas maas interfaces create-vlan $nodes vlan=$1 parent=$parentid
178      done
179  }
180
181 #just make sure the ssh keys added into maas for the current user
182 sed --i "s@/home/ubuntu@$HOME@g" ./deployment.yaml
183 sed --i "s@qemu+ssh://ubuntu@qemu+ssh://$USER@g" ./deployment.yaml
184
185 cp ./deployment.yaml ~/.juju/
186
187 if [ -e ./deployconfig.yaml ]; then
188     cp ./deployconfig.yaml ~/.juju/
189 fi
190
191 sudo maas-deployer -c deployment.yaml -d --force
192
193 sudo chown $USER:$USER environments.yaml
194
195 echo "... Deployment of maas finish ...."
196
197 maas_ip=`grep " ip_address" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
198 apikey=`grep maas-oauth: environments.yaml | cut -d "'" -f 2`
199 maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
200 maas maas sshkeys new key="`cat $HOME/.ssh/id_rsa.pub`"
201
202 #Added the Qtip public to run the Qtip test after install on bare metal nodes.
203 maas maas sshkeys new key="`cat ./maas/sshkeys/QtipKey.pub`"
204
205 #adding compute and control nodes VM to MAAS for deployment purpose.
206 if [ "$virtinstall" -eq 1 ]; then
207     # create two more VMs to do the deployment.
208     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
209
210     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
211
212     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
213
214     node1controlmac=`grep  "mac address" node1-control | head -1 | cut -d "'" -f 2`
215     node2computemac=`grep  "mac address" node2-compute | head -1 | cut -d "'" -f 2`
216     node5computemac=`grep  "mac address" node5-compute | head -1 | cut -d "'" -f 2`
217
218     sudo virsh -c qemu:///system define --file node1-control
219     sudo virsh -c qemu:///system define --file node2-compute
220     sudo virsh -c qemu:///system define --file node5-compute
221
222     maas maas tags new name='control'
223     maas maas tags new name='compute'
224
225     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 `
226
227     maas maas tag update-nodes control add=$controlnodeid
228
229     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 `
230
231     maas maas tag update-nodes compute add=$computenodeid
232
233     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 `
234
235     maas maas tag update-nodes compute add=$computenodeid
236 fi
237
238 # Enable vlan interfaces with maas
239 case "$labname" in
240     'intelpod5' )
241         maas refresh
242         enableautomode eth4 AUTO "10.5.12.0/24" || true
243         ;;
244     'intelpod6' )
245         maas refresh
246         enableautomode eth4 AUTO "10.6.12.0/24" || true
247         ;;
248     'intelpod9' )
249         maas refresh
250         crvlanupdsubnet vlan902 1 "DataNetwork" 902 2 || true
251         crvlanupdsubnet vlan905 2 "PublicNetwork" 905 3 || true
252         crnodevlanint $vlan902 eth0 || true
253         crnodevlanint $vlan905 eth1 || true
254         enableautomodebyname eth0.902 AUTO "10.9.12.0/24" compute || true
255         enableautomodebyname eth1.905 AUTO "10.9.15.0/24" compute || true
256         enableautomodebyname eth0.902 AUTO "10.9.12.0/24" control || true
257         enableautomodebyname eth1.905 AUTO "10.9.15.0/24" control || true
258         ;;
259     'orangepod1' )
260         maas refresh
261         enableautomode eth2 DHCP "192.168.21.0/24" || true
262         enableautomode eth3 AUTO "192.168.11.0/24" || true
263         ;;
264     'orangepod2' )
265         maas refresh
266         enableautomode eth4 DHCP "192.168.22.0/24" || true
267         enableautomode eth2 DHCP "192.168.22.0/24" || true
268         enableautomode eth5 AUTO "192.168.12.0/24" || true
269         enableautomode eth3 AUTO "192.168.12.0/24" || true
270         ;;
271     'attvirpod1' )
272         enableautomodebyname eth1 AUTO "192.168.10.0/24" control || true
273         ;;
274     'juniperpod1' )
275         ;;
276     'cengnlynxpod1' )
277         maas refresh
278         crvlanupdsubnet vlan1201 1 "DataNetwork" 1201 2 || true
279         crvlanupdsubnet vlan1202 2 "PublicNetwork" 1202 3 || true
280         crnodevlanint $vlan1201 eth1 || true
281         crnodevlanint $vlan1202 eth1 || true
282         enableautomode eth1.1201 AUTO "172.16.121.3/24" compute || true
283         enableautomode eth1.1201 AUTO "172.16.121.3/24" control || true
284         ;;
285 esac
286
287 echo " .... MAAS deployment finished successfully ...."
288
289 #echo "... Deployment of opnfv release Started ...."
290 #python deploy.py $maas_ip