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