typo.
[joid.git] / ci / 02-maasdeploy.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 virtinstall=0
6
7 case "$1" in
8     'intelpod5' )
9         cp maas/intel/pod5/deployment.yaml ./deployment.yaml
10         ;;
11     'intelpod6' )
12         cp maas/intel/pod6/deployment.yaml ./deployment.yaml
13         ;;
14     'orangepod2' )
15         cp maas/orange/pod2/deployment.yaml ./deployment.yaml
16         ;;
17     'attvirpod1' )
18         cp maas/att/virpod1/deployment.yaml ./deployment.yaml
19         ;;
20     'juniperpod1' )
21         cp maas/juniper/pod1/deployment.yaml ./deployment.yaml
22         ;;
23     'cengnlynxpod1' )
24         cp maas/cengn_lynx/pod1/deployment.yaml ./deployment.yaml
25         ;;
26     'custom' )
27         cp maas/custom/deployment.yaml ./deployment.yaml
28         ;;
29     * )
30         virtinstall=1
31         ./cleanvm.sh
32         cp maas/default/deployment.yaml ./deployment.yaml
33         ;;
34 esac
35
36 #just make sure the ssh keys added into maas for the current user
37 sed --i "s@/home/ubuntu@$HOME@g" ./deployment.yaml
38 sed --i "s@qemu+ssh://ubuntu@qemu+ssh://$USER@g" ./deployment.yaml
39
40 #make sure no password asked during the deployment. 
41
42 echo "$USER ALL=(ALL) NOPASSWD:ALL" > 90-joid-init
43
44 if [ -e /etc/sudoers.d/90-joid-init ]; then
45     sudo cp /etc/sudoers.d/90-joid-init 91-joid-init
46     sudo chown $USER:$USER 91-joid-init
47     sudo chmod 660 91-joid-init
48     sudo cat 90-joid-init >> 91-joid-init
49     sudo chown root:root 91-joid-init
50     sudo mv 91-joid-init /etc/sudoers.d/
51 else
52     sudo chown root:root 90-joid-init
53     sudo mv 90-joid-init /etc/sudoers.d/
54 fi
55
56 echo "... Deployment of maas Started ...."
57
58 if [ ! -e $HOME/.ssh/id_rsa ]; then
59     ssh-keygen -N '' -f $HOME/.ssh/id_rsa
60 fi
61
62 #define the pool and try to start even though its already exist.
63 # For fresh install this may or may not there.
64
65 sudo apt-get install libvirt-bin -y
66 sudo adduser $USER libvirtd
67 sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true
68 sudo virsh pool-start default || true
69 sudo virsh pool-autostart default || true
70
71 sudo apt-add-repository ppa:maas-deployers/stable -y
72 sudo apt-add-repository ppa:juju/stable -y
73 sudo apt-add-repository ppa:maas/stable -y
74 sudo apt-add-repository cloud-archive/liberty -y
75 sudo apt-get update -y
76 sudo apt-get dist-upgrade -y
77 sudo apt-get install openssh-server git maas-deployer juju juju-deployer maas-cli python-pip python-openstackclient
78
79 sudo pip install shyaml
80 juju init -f
81
82 cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
83
84 if [ "$virtinstall" -eq 1 ]; then
85     sudo virsh net-dumpxml default > default-net-org.xml
86     sudo sed -i '/dhcp/d' default-net-org.xml
87     sudo sed -i '/range/d' default-net-org.xml
88     sudo virsh net-define default-net-org.xml
89     sudo virsh net-destroy default
90     sudo virsh net-start default
91 fi
92
93 #Below function will mark the interfaces in Auto mode to enbled by MAAS
94 enableautomode() {
95     listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
96     for nodes in $listofnodes
97     do
98         maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3
99     done
100 }
101
102 #Below function will mark the interfaces in Auto mode to enbled by MAAS
103 # using hostname of the node added into MAAS
104
105 enableautomodebyname() {
106     if [ ! -z "$4" ]; then
107         for i in `seq 1 7`;
108         do
109             nodes=`maas maas nodes list hostname=node$i-$4 | grep system_id | cut -d '"' -f 4`
110             if [ ! -z "$nodes" ]; then
111                 maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3
112             fi
113        done
114     fi
115 }
116
117 #Below function will create vlan and update interface with the new vlan
118 # will return the vlan id created
119 crvlanupdsubnet() {
120     newvlanid=`maas maas vlans create $2 name=$3 vid=$4 | grep resource | cut -d '/' -f 6 `
121     maas maas subnet update $5 vlan=$newvlanid
122     eval "$1"="'$newvlanid'"
123 }
124
125 #Below function will create interface with new vlan and bind to physical interface
126 crnodevlanint() {
127     listofnodes=`maas maas nodes list | grep system_id | cut -d '"' -f 4`
128
129     for nodes in $listofnodes
130     do
131         parentid=`maas maas interface read $nodes $2 | grep interfaces | cut -d '/' -f 8`
132         maas maas interfaces create-vlan $nodes vlan=$1 parent=$parentid
133      done
134  }
135
136 sudo maas-deployer -c deployment.yaml -d --force
137
138 sudo chown $USER:$USER environments.yaml
139
140 echo "... Deployment of maas finish ...."
141
142 maas_ip=`grep " ip_address" deployment.yaml | cut -d " "  -f 10`
143 apikey=`grep maas-oauth: environments.yaml | cut -d "'" -f 2`
144 maas login maas http://${maas_ip}/MAAS/api/1.0 ${apikey}
145 maas maas boot-source update 1 url="http://maas.ubuntu.com/images/ephemeral-v2/daily/"
146 #maas maas boot-source-selections create 1 os="ubuntu" release="precise" arches="amd64" subarches="*" labels="*"
147 maas maas node-groups import-boot-images
148 maas maas sshkeys new key="`cat $HOME/.ssh/id_rsa.pub`"
149
150 #Added the Qtip public to run the Qtip test after install on bare metal nodes.
151 maas maas sshkeys new key="`cat ./maas/sshkeys/QtipKey.pub`"
152
153 #adding compute and control nodes VM to MAAS for deployment purpose.
154 if [ "$virtinstall" -eq 1 ]; then
155     # create two more VMs to do the deployment.
156     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
157
158     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
159
160     node1controlmac=`grep  "mac address" node1-control | head -1 | cut -d "'" -f 2`
161     node2computemac=`grep  "mac address" node2-compute | head -1 | cut -d "'" -f 2`
162
163     sudo virsh -c qemu:///system define --file node1-control
164     sudo virsh -c qemu:///system define --file node2-compute
165
166     maas maas tags new name='control'
167     maas maas tags new name='compute'
168
169     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 `
170
171     maas maas tag update-nodes control add=$controlnodeid
172
173     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 `
174
175     maas maas tag update-nodes compute add=$computenodeid
176
177 fi
178
179 # Enable vlan interfaces with maas
180 case "$1" in
181     'intelpod5' )
182         maas refresh
183         crvlanupdsubnet vlan721 1 "DataNetwork" 721 2 || true
184         crvlanupdsubnet vlan724 2 "PublicNetwork" 724 3 || true
185         crnodevlanint $vlan721 eth2|| true
186         crnodevlanint $vlan724 eth2|| true
187         enableautomodebyname eth2.721 AUTO "10.4.9.0/24" compute || true
188         enableautomodebyname eth2.721 AUTO "10.4.9.0/24" control || true
189         ;;
190     'intelpod6' )
191         maas refresh
192         enableautomodebyname eth1 AUTO "10.4.9.0/24" compute || true
193         enableautomodebyname eth1 AUTO "10.4.9.0/24" control || true
194         ;;
195     'orangepod2' )
196         maas refresh
197         enableautomodebyname eth4 DHCP "192.168.22.0/24" compute || true
198         enableautomodebyname eth5 AUTO "192.168.12.0/24" compute || true
199         enableautomodebyname eth2 DHCP "192.168.22.0/24" control || true
200         enableautomodebyname eth3 AUTO "192.168.12.0/24" control || true
201         ;;
202     'attvirpod1' )
203         ;;
204     'juniperpod1' )
205         ;;
206     'cengnlynxpod1' )
207         maas refresh
208         crvlanupdsubnet vlan1201 1 "DataNetwork" 1201 2 || true
209         crvlanupdsubnet vlan1202 2 "PublicNetwork" 1202 3 || true
210         crnodevlanint $vlan1201 eth1 || true
211         crnodevlanint $vlan1202 eth1 || true
212         enableautomode eth1.1201 AUTO "172.16.121.3/24" compute || true
213         enableautomode eth1.1201 AUTO "172.16.121.3/24" control || true
214         ;;
215 esac
216
217 echo " .... MAAS deployment finished successfully ...."
218
219 #echo "... Deployment of opnfv release Started ...."
220 #python deploy.py $maas_ip
221