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