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