modfied to add more vms in case there is updates required.
[joid.git] / ci / 03-maasdeploy.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 maasver=`apt-cache policy maas | grep Installed | cut -d ':' -f 2 | sed -e 's/ //'`
6
7 if [[ "$maasver" > "2" ]]; then
8     echo "removing existing maas ..."
9     #sudo apt-get purge maas maas-cli maas-common maas-dhcp maas-dns maas-proxy maas-rack-controller maas-region-api maas-region-controller  -y
10     #sudo rm -rf /var/lib/maas
11 fi
12
13 virtinstall=0
14 labname=$1
15
16 if [ ! -e $HOME/.ssh/id_rsa ]; then
17     ssh-keygen -N '' -f $HOME/.ssh/id_rsa
18 fi
19
20 #install the packages needed
21 sudo apt-add-repository ppa:juju/stable -y
22 sudo apt-add-repository ppa:maas/stable -y
23 sudo apt-add-repository cloud-archive:newton -y
24 sudo apt-get update -y
25 sudo apt-get dist-upgrade -y
26 sudo apt-get install openssh-server bzr git juju virtinst qemu-kvm libvirt-bin \
27              maas maas-region-controller python-pip python-psutil python-openstackclient \
28              python-congressclient gsutil charm-tools pastebinit python-jinja2 sshpass \
29              openssh-server vlan ipmitool -y
30
31 sudo pip install --upgrade pip
32
33 #first parameter should be custom and second should be either
34 # absolute location of file (including file name) or url of the
35 # file to download.
36
37
38 #
39 # Config preparation
40 #
41
42 # Get labconfig and generate deployment.yaml for MAAS and deployconfig.yaml
43 case "$labname" in
44     intelpod[569]|orangepod[12]|cengnpod[12] )
45         array=(${labname//pod/ })
46         cp ../labconfig/${array[0]}/pod${array[1]}/labconfig.yaml .
47         python genMAASConfig.py -l labconfig.yaml > deployment.yaml
48         python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
49         ;;
50     'attvirpod1' )
51         cp ../labconfig/att/virpod1/labconfig.yaml .
52         python genMAASConfig.py -l labconfig.yaml > deployment.yaml
53         python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
54         ;;
55     'juniperpod1' )
56         cp maas/juniper/pod1/deployment.yaml ./deployment.yaml
57         ;;
58     'custom')
59         labfile=$2
60         if [ -e $labfile ]; then
61             cp $labfile ./labconfig.yaml || true
62         else
63             wget $labconfigfile -t 3 -T 10 -O ./labconfig.yaml || true
64             count=`wc -l labconfig.yaml  | cut -d " " -f 1`
65             if [ $count -lt 10 ]; then
66                 rm -rf labconfig.yaml
67             fi
68         fi
69         if [ ! -e ./labconfig.yaml ]; then
70             virtinstall=1
71         else
72             python genMAASConfig.py -l labconfig.yaml > deployment.yaml
73             python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
74             labname=`grep "maas_name" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
75         fi
76         ;;
77     * )
78         virtinstall=1
79         ;;
80 esac
81
82 MAAS_IP=$(grep " ip_address" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //')
83 MAAS_NAME=`grep "maas_name" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
84 API_SERVER="http://$MAAS_IP/MAAS/api/2.0"
85 API_SERVERMAAS="http://$MAAS_IP/MAAS/"
86 PROFILE=ubuntu
87 MY_UPSTREAM_DNS=`grep "upstream_dns" deployment.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
88 SSH_KEY=`cat ~/.ssh/id_rsa.pub`
89 MAIN_ARCHIVE=`grep "main_archive" deployment.yaml | cut -d ':' -f 2-3 | sed -e 's/ //'`
90 URL=https://images.maas.io/ephemeral-v2/daily/
91 KEYRING_FILE=/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg
92 SOURCE_ID=1
93 FABRIC_ID=1
94 VLAN_TAG=""
95 PRIMARY_RACK_CONTROLLER="$MAAS_IP"
96 SUBNET_CIDR="192.168.122.0/24"
97 VLAN_TAG="untagged"
98
99 # In the case of a virtual deployment get deployment.yaml and deployconfig.yaml
100 if [ "$virtinstall" -eq 1 ]; then
101     labname="default"
102     MAAS_IP="192.168.122.1"
103     API_SERVER="http://$MAAS_IP/MAAS/api/2.0"
104     API_SERVERMAAS="http://$MAAS_IP/MAAS/"
105     PRIMARY_RACK_CONTROLLER="$MAAS_IP"
106     ./cleanvm.sh || true
107     cp ../labconfig/default/deployment.yaml ./
108     cp ../labconfig/default/labconfig.yaml ./
109     cp ../labconfig/default/deployconfig.yaml ./
110 fi
111
112 #
113 # Prepare local environment to avoid password asking
114 #
115
116 # make sure no password asked during the deployment.
117 echo "$USER ALL=(ALL) NOPASSWD:ALL" > 90-joid-init
118
119 if [ -e /etc/sudoers.d/90-joid-init ]; then
120     sudo cp /etc/sudoers.d/90-joid-init 91-joid-init
121     sudo chown $USER:$USER 91-joid-init
122     sudo chmod 660 91-joid-init
123     sudo cat 90-joid-init >> 91-joid-init
124     sudo chown root:root 91-joid-init
125     sudo mv 91-joid-init /etc/sudoers.d/
126 else
127     sudo chown root:root 90-joid-init
128     sudo mv 90-joid-init /etc/sudoers.d/
129 fi
130
131 echo "... Deployment of maas Started ...."
132
133 #
134 # Virsh preparation
135 #
136
137 # define the pool and try to start even though its already exist.
138 # For fresh install this may or may not there.
139 sudo adduser $USER libvirtd
140 sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true
141 sudo virsh pool-start default || true
142 sudo virsh pool-autostart default || true
143
144 # In case of virtual install set network
145 if [ "$virtinstall" -eq 1 ]; then
146     sudo virsh net-dumpxml default > default-net-org.xml
147     sudo sed -i '/dhcp/d' default-net-org.xml
148     sudo sed -i '/range/d' default-net-org.xml
149     sudo virsh net-define default-net-org.xml
150     sudo virsh net-destroy default
151     sudo virsh net-start default
152 fi
153
154 #
155 # Cleanup, juju init and config backup
156 #
157
158 # To avoid problem between apiclient/maas_client and apiclient from google
159 # we remove the package google-api-python-client from yardstick installer
160 if [ $(pip list |grep google-api-python-client |wc -l) == 1 ]; then
161     sudo pip uninstall google-api-python-client
162 fi
163
164 #create backup directory
165 mkdir ~/joid_config/ || true
166 mkdir ~/.juju/ || true
167
168 if [ ! -e ~maas/.ssh/id_rsa.pub ]; then
169     sudo su - $USER -c "echo |ssh-keygen -t rsa -f $HOME/id_rsa_maas"
170     sudo -u maas mkdir ~maas/.ssh/ || true
171     sudo cp $HOME/id_rsa_maas ~maas/.ssh/id_rsa
172     sudo cp $HOME/id_rsa_maas.pub ~maas/.ssh/id_rsa.pub
173 fi
174
175 # Ensure virsh can connect without ssh auth
176 sudo cat ~maas/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
177 sudo cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
178
179 #
180 # MAAS deploy
181 #
182
183 installmaas(){
184     sudo apt-get install maas maas-region-controller -y
185 }
186
187 #
188 # MAAS config
189 # https://insights.ubuntu.com/2016/01/23/maas-setup-deploying-openstack-on-maas-1-9-with-juju/
190 # http://blog.naydenov.net/2016/01/nodes-networking-deploying-openstack-on-maas-1-9-with-juju/
191 #
192 configuremaas(){
193     sudo maas createadmin --username=ubuntu --email=ubuntu@ubuntu.com --password=ubuntu || true
194     API_KEY=`sudo maas-region apikey --username=ubuntu`
195     maas login $PROFILE $API_SERVERMAAS $API_KEY
196     maas $PROFILE maas set-config name='main_archive' value=$MAIN_ARCHIVE || true
197     maas $PROFILE maas set-config name=upstream_dns value=$MY_UPSTREAM_DNS || true
198     maas $PROFILE maas set-config name='maas_name' value=$MAAS_NAME || true
199     maas $PROFILE maas set-config name='ntp_server' value='ntp.ubuntu.com' || true
200     maas $PROFILE sshkeys create "key=$SSH_KEY" || true
201     maas $PROFILE boot-source update $SOURCE_ID \
202          url=$URL keyring_filename=$KEYRING_FILE || true
203     maas $PROFILE boot-source-selections create 1 \
204          release='trusty' arches='amd64' labels='daily' \
205          os='ubuntu' subarches='*' || true
206     maas $PROFILE boot-resources import || true
207
208     while [ "$(maas $PROFILE boot-resources read | grep trusty | wc -l )" -le 0 ];
209     do
210         maas $PROFILE boot-resources import || true
211         sleep 20
212     done
213
214     maas $PROFILE tags create name='bootstrap' || true
215     maas $PROFILE tags create name='compute' || true
216     maas $PROFILE tags create name='control' || true
217     maas $PROFILE tags create name='storage' || true
218
219     #create the required spaces.
220     maas $PROFILE space update 0 name=default || true
221     maas $PROFILE spaces create name=unused || true
222     maas $PROFILE spaces create name=admin-api || true
223     maas $PROFILE spaces create name=internal-api || true
224     maas $PROFILE spaces create name=public-api || true
225     maas $PROFILE spaces create name=compute-data || true
226     maas $PROFILE spaces create name=compute-external || true
227     maas $PROFILE spaces create name=storage-data || true
228     maas $PROFILE spaces create name=storage-cluster || true
229
230     #maas $PROFILE subnet update vlan:<vlan id> name=internal-api space=<0> gateway_ip=10.5.1.1
231     #maas $PROFILE subnet update vlan:<vlan id> name=admin-api space=<2> gateway_ip=10.5.12.1
232     #maas $PROFILE subnet update vlan:<vlan id> name=public-api space=<1> gateway_ip=10.5.15.1
233     #maas $PROFILE subnet update vlan:<vlan id> name=compute-data space=<3> gateway_ip=10.5.17.1
234     #maas $PROFILE subnet update vlan:<vlan id> name=compute-external space=<4> gateway_ip=10.5.19.1
235     #maas $PROFILE subnet update vlan:<vlan id> name=storage-data space=<5> gateway_ip=10.5.20.1
236     #maas $PROFILE subnet update vlan:<vlan id> name=storage-cluster space=<6> gateway_ip=10.5.21.1
237
238 }
239
240 enablesubnetanddhcp(){
241
242     SUBNET_PREFIX="192.168.122"
243     SUBNET_CIDR="($SUBNET_PREFIX).0/24"
244
245     IP_STATIC_RANGE_LOW="192.168.122.1"
246     IP_STATIC_RANGE_HIGH="192.168.122.49"
247
248     API_KEY=`sudo maas-region apikey --username=ubuntu`
249     maas login $PROFILE $API_SERVERMAAS $API_KEY
250
251     maas $PROFILE ipranges create type=reserved \
252          start_ip=$IP_STATIC_RANGE_LOW end_ip=$IP_STATIC_RANGE_HIGH \
253          comment='This is a reserved range' || true
254
255     IP_DYNAMIC_RANGE_LOW="192.168.122.50"
256     IP_DYNAMIC_RANGE_HIGH="192.168.122.150"
257     maas $PROFILE ipranges create type=dynamic \
258         start_ip=$IP_DYNAMIC_RANGE_LOW end_ip=$IP_DYNAMIC_RANGE_HIGH \
259         comment='This is a reserved dynamic range' || true
260
261
262     FABRIC_ID=$(maas $PROFILE subnet read $SUBNET_CIDR \
263                 | grep fabric | cut -d ' ' -f 10 | cut -d '"' -f 2)
264
265     PRIMARY_RACK_CONTROLLER=`maas $PROFILE rack-controllers read  | grep system_id | cut -d '"' -f 4`
266
267     maas $PROFILE vlan update $FABRIC_ID $VLAN_TAG dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true
268
269     MY_GATEWAY="192.168.122.1"
270     MY_NAMESERVER=192.168.122.1
271     maas $PROFILE subnet update $SUBNET_CIDR gateway_ip=$MY_GATEWAY || true
272     maas $PROFILE subnet update $SUBNET_CIDR dns_servers=$MY_NAMESERVER || true
273
274 }
275
276 ## derived from https://gist.github.com/epiloque/8cf512c6d64641bde388
277 ## works for arrays of hashes, as long as the hashes do not have arrays
278 parse_yaml2() {
279     local prefix=$2
280     local s
281     local w
282     local fs
283     s='[[:space:]]*'
284     w='[a-zA-Z0-9_]*'
285     fs="$(echo @|tr @ '\034')"
286     sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \
287         -e "s|^\($s\)\($w\)$s[:-]$s\(.*\)$s\$|\1$fs\2$fs\3|p" "$1" |
288     awk -F"$fs" '{
289       indent = length($1)/2;
290       if (length($2) == 0) { conj[indent]="+";} else {conj[indent]="";}
291       vname[indent] = $2;
292       for (i in vname) {if (i > indent) {delete vname[i]}}
293       if (length($3) > 0) {
294               vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
295               printf("%s%s%s%s=(\"%s\")\n", "'"$prefix"'",vn, $2, conj[indent-1],$3);
296       }
297     }' | sed 's/_=/+=/g'
298 }
299
300 addnodes(){
301     API_KEY=`sudo maas-region apikey --username=ubuntu`
302     maas login $PROFILE $API_SERVERMAAS $API_KEY
303
304     if [ "$virtinstall" -eq 1 ]; then
305         ntew=virbr0
306     else
307         brid=`brctl show | grep 8000 | cut -d "8" -f 1 |  tr "\n" " " | tr "\t" " " | tr -s " "`
308
309         netw=""
310         for feature in $brid; do
311             if [ "$feature" == "" ]; then
312                 netw=$netw
313             else
314                 netw=$netw" --network bridge="$feature",model=virtio"
315             fi
316         done
317     fi
318
319     sudo virt-install --connect qemu:///system --name bootstrap --ram 4098 --cpu host --vcpus 2 --video \
320                  cirrus --arch x86_64 --disk size=20,format=qcow2,bus=virtio,io=native,pool=default \
321                  $netw --boot network,hd,menu=off --noautoconsole \
322                  --vnc --print-xml | tee bootstrap
323     if [ "$virtinstall" -eq 1 ]; then
324         bootstrapmac=`grep  "mac address" bootstrap | head -1 | cut -d '"' -f 2`
325     else
326         bootstrapmac=""
327         bootstrapmacs=`grep  "mac address" bootstrap| cut -d "'" -f 2`
328         for mac in $bootstrapmacs; do
329             bootstrapmac=$bootstrapmac" mac_addresses="$mac 
330         done
331     fi
332     sudo virsh -c qemu:///system define --file bootstrap
333
334     bootstrapid=`maas $PROFILE machines create autodetect_nodegroup='yes' name='bootstrap' \
335                  tags='bootstrap' hostname='bootstrap' power_type='virsh' $bootstrapmac \
336                  power_parameters_power_address='qemu+ssh://'$USER'@'$MAAS_IP'/system' \
337                  architecture='amd64/generic' power_parameters_power_id='bootstrap' | grep system_id | cut -d '"' -f 4 `
338
339     maas $PROFILE tag update-nodes bootstrap add=$bootstrapid
340
341     if [ "$virtinstall" -eq 1 ]; then
342
343         sudo virt-install --connect qemu:///system --name node1-control --ram 8192 --cpu host --vcpus 4 \
344                      --disk size=120,format=qcow2,bus=virtio,io=native,pool=default \
345                      --network bridge=virbr0,model=virtio $netw \
346                      --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node1-control
347
348         sudo virt-install --connect qemu:///system --name node2-compute --ram 8192 --cpu host --vcpus 4 \
349                     --disk size=120,format=qcow2,bus=virtio,io=native,pool=default \
350                     --network bridge=virbr0,model=virtio $netw \
351                     --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node2-compute
352
353         sudo virt-install --connect qemu:///system --name node5-compute --ram 8192 --cpu host --vcpus 4 \
354                    --disk size=120,format=qcow2,bus=virtio,io=native,pool=default \
355                    --network bridge=virbr0,model=virtio $netw \
356                    --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee node5-compute
357
358
359         node1controlmac=`grep  "mac address" node1-control | head -1 | cut -d '"' -f 2`
360         node2computemac=`grep  "mac address" node2-compute | head -1 | cut -d '"' -f 2`
361         node5computemac=`grep  "mac address" node5-compute | head -1 | cut -d '"' -f 2`
362
363         sudo virsh -c qemu:///system define --file node1-control
364         sudo virsh -c qemu:///system define --file node2-compute
365         sudo virsh -c qemu:///system define --file node5-compute
366
367
368         controlnodeid=`maas $PROFILE machines create autodetect_nodegroup='yes' name='node1-control' \
369                  tags='control' hostname='node1-control' power_type='virsh' mac_addresses=$node1controlmac \
370                  power_parameters_power_address='qemu+ssh://'$USER'@'$MAAS_IP'/system' \
371                  architecture='amd64/generic' power_parameters_power_id='node1-control' | grep system_id | cut -d '"' -f 4 `
372         computenode2id=`maas $PROFILE machines create autodetect_nodegroup='yes' name='node2-compute' \
373                  tags='compute' hostname='node2-compute' power_type='virsh' mac_addresses=$node2computemac \
374                  power_parameters_power_address='qemu+ssh://'$USER'@'$MAAS_IP'/system' \
375                  architecture='amd64/generic' power_parameters_power_id='node2-compute' | grep system_id | cut -d '"' -f 4 `
376         computenode5id=`maas $PROFILE machines create autodetect_nodegroup='yes' name='node5-compute' \
377                  tags='compute' hostname='node5-compute' power_type='virsh' mac_addresses=$node5computemac \
378                  power_parameters_power_address='qemu+ssh://'$USER'@'$MAAS_IP'/system' \
379                  architecture='amd64/generic' power_parameters_power_id='node5-compute' | grep system_id | cut -d '"' -f 4 `
380
381         maas $PROFILE tag update-nodes control add=$controlnodeid || true
382         maas $PROFILE tag update-nodes compute add=$compute2nodeid || true
383         maas $PROFILE tag update-nodes compute add=$compute5nodeid || true
384     fi
385 }
386
387 configuremaas
388 addnodes
389 #sudo chown $USER:$USER environments.yaml
390
391 echo "... Deployment of maas finish ...."
392
393 # Backup deployment.yaml and deployconfig.yaml in .juju folder
394
395 #cp ./environments.yaml ~/.juju/
396 #cp ./environments.yaml ~/joid_config/
397
398 if [ -e ./deployconfig.yaml ]; then
399     cp ./deployconfig.yaml ~/.juju/
400     cp ./labconfig.yaml ~/.juju/
401     cp ./deployconfig.yaml ~/joid_config/
402     cp ./labconfig.yaml ~/joid_config/
403 fi
404
405 if [ -e ./deployment.yaml ]; then
406     cp ./deployment.yaml ~/.juju/
407     cp ./deployment.yaml ~/joid_config/
408 fi
409
410 #Added the Qtip public to run the Qtip test after install on bare metal nodes.
411 #maas $PROFILE sshkeys new key="`cat ./maas/sshkeys/QtipKey.pub`"
412 #maas $PROFILE sshkeys new key="`cat ./maas/sshkeys/DominoKey.pub`"
413
414 #
415 # Functions for MAAS network customization
416 #
417
418 #Below function will mark the interfaces in Auto mode to enbled by MAAS
419 enableautomode() {
420     API_KEY=`sudo maas-region apikey --username=ubuntu`
421     maas login $PROFILE $API_SERVERMAAS $API_KEY
422
423     listofnodes=`maas maas nodes read | grep system_id | cut -d '"' -f 4`
424     for nodes in $listofnodes
425     do
426         maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3 || true
427     done
428 }
429
430 #Below function will mark the interfaces in Auto mode to enbled by MAAS
431 # using hostname of the node added into MAAS
432 enableautomodebyname() {
433     API_KEY=`sudo maas-region apikey --username=ubuntu`
434     maas login $PROFILE $API_SERVERMAAS $API_KEY
435
436     if [ ! -z "$4" ]; then
437         for i in `seq 1 7`;
438         do
439             nodes=`maas maas nodes read | grep system_id | cut -d '"' -f 4`
440             if [ ! -z "$nodes" ]; then
441                 maas maas interface link-subnet $nodes $1  mode=$2 subnet=$3 || true
442             fi
443        done
444     fi
445 }
446
447 #Below function will create vlan and update interface with the new vlan
448 # will return the vlan id created
449 crvlanupdsubnet() {
450     API_KEY=`sudo maas-region apikey --username=ubuntu`
451     maas login $PROFILE $API_SERVERMAAS $API_KEY
452
453     newvlanid=`maas maas vlans create $2 name=$3 vid=$4 | grep resource | cut -d '/' -f 6 `
454     maas maas subnet update $5 vlan=$newvlanid
455     eval "$1"="'$newvlanid'"
456 }
457
458 #Below function will create interface with new vlan and bind to physical interface
459 crnodevlanint() {
460     API_KEY=`sudo maas-region apikey --username=ubuntu`
461     maas login $PROFILE $API_SERVERMAAS $API_KEY
462
463     listofnodes=`maas maas nodes read | grep system_id | cut -d '"' -f 4`
464
465     for nodes in $listofnodes
466     do
467         parentid=`maas maas interface read $nodes $2 | grep interfaces | cut -d '/' -f 8`
468         maas maas interfaces create-vlan $nodes vlan=$1 parent=$parentid
469      done
470  }
471
472 #function for JUJU envronment
473
474 addcredential() {
475     API_KEY=`sudo maas-region apikey --username=ubuntu`
476     controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml`
477     cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml`
478
479     echo  "credentials:" > credential.yaml
480     echo  "  $controllername:" >> credential.yaml
481     echo  "    opnfv-credentials:" >> credential.yaml
482     echo  "      auth-type: oauth1" >> credential.yaml
483     echo  "      maas-oauth: $API_KEY" >> credential.yaml
484
485     juju add-credential $controllername -f credential.yaml --replace
486 }
487
488 addcloud() {
489     controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml`
490     cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml`
491
492     echo "clouds:" > maas-cloud.yaml
493     echo "   $cloudname:" >> maas-cloud.yaml
494     echo "      type: maas" >> maas-cloud.yaml
495     echo "      auth-types: [oauth1]" >> maas-cloud.yaml
496     echo "      endpoint: $API_SERVERMAAS" >> maas-cloud.yaml
497
498     juju add-cloud $cloudname maas-cloud.yaml --replace
499 }
500
501
502 #
503 # VLAN customization
504 #
505
506 case "$labname" in
507     'intelpod9' )
508         maas refresh
509         crvlanupdsubnet vlan904 fabric-1 "MgmtNetwork" 904 2 || true
510         crvlanupdsubnet vlan905 fabric-2 "PublicNetwork" 905 3 || true
511         crnodevlanint $vlan905 eth1 || true
512         crnodevlanint $vlan905 eth3 || true
513         enableautomodebyname eth1.905 AUTO "10.9.15.0/24" || true
514         enableautomodebyname eth3.905 AUTO "10.9.15.0/24" || true
515         enableautomodebyname eth0 AUTO "10.9.12.0/24" || true
516         enableautomodebyname eth2 AUTO "10.9.12.0/24" || true
517         ;;
518 esac
519
520 #
521 # Enable MAAS nodes interfaces
522 #
523
524 #read interface needed in Auto mode and enable it. Will be rmeoved once auto enablement will be implemented in the maas-deployer.
525 if [ -e ~/joid_config/deployconfig.yaml ]; then
526   cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
527 elif [ -e ~/.juju/deployconfig.yaml ]; then
528   cp ~/.juju/deployconfig.yaml ./deployconfig.yaml
529 fi
530
531 if [ -e ./deployconfig.yaml ]; then
532   enableiflist=`grep "interface-enable" deployconfig.yaml | cut -d ' ' -f 4 `
533   datanet=`grep "dataNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
534   stornet=`grep "storageNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
535   pubnet=`grep "publicNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
536
537   # split EXTERNAL_NETWORK=first ip;last ip; gateway;network
538
539   if [ "$datanet" != "''" ]; then
540       EXTNET=(${enableiflist//,/ })
541       i="0"
542       while [ ! -z "${EXTNET[i]}" ];
543       do
544           enableautomode ${EXTNET[i]} AUTO $datanet || true
545           i=$[$i+1]
546       done
547
548   fi
549   if [ "$stornet" != "''" ]; then
550       EXTNET=(${enableiflist//,/ })
551       i="0"
552       while [ ! -z "${EXTNET[i]}" ];
553       do
554           enableautomode ${EXTNET[i]} AUTO $stornet || true
555           i=$[$i+1]
556       done
557   fi
558   if [ "$pubnet" != "''" ]; then
559       EXTNET=(${enableiflist//,/ })
560       i="0"
561       while [ ! -z "${EXTNET[i]}" ];
562       do
563           enableautomode ${EXTNET[i]} AUTO $pubnet || true
564           i=$[$i+1]
565       done
566   fi
567 fi
568
569
570 # Add the cloud and controller credentials for MAAS for that lab.
571 jujuver=`juju --version`
572
573 if [ "$jujuver" > "2" ]; then
574     addcloud
575     addcredential
576 fi
577
578 #
579 # End of scripts
580 #
581 echo " .... MAAS deployment finished successfully ...."