modify the maas to use the interface name as per yaml file
[joid.git] / ci / 03-maasdeploy.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 virtinstall=0
6 labname=$1
7
8 if [ ! -e $HOME/.ssh/id_rsa ]; then
9     ssh-keygen -N '' -f $HOME/.ssh/id_rsa
10 fi
11
12 #install the packages needed
13 sudo apt-add-repository ppa:juju/stable -y
14 sudo apt-add-repository ppa:maas/stable -y
15 sudo apt-add-repository cloud-archive:newton -y
16 sudo apt-get update -y
17 #sudo apt-get dist-upgrade -y
18 sudo apt-get install bridge-utils openssh-server bzr git virtinst qemu-kvm libvirt-bin juju \
19              maas maas-region-controller python-pip python-psutil python-openstackclient \
20              python-congressclient gsutil charm-tools pastebinit python-jinja2 sshpass \
21              openssh-server vlan ipmitool jq expect -y
22
23 sudo pip install --upgrade pip
24
25 #first parameter should be custom and second should be either
26 # absolute location of file (including file name) or url of the
27 # file to download.
28
29
30 #
31 # Config preparation
32 #
33
34 # Get labconfig and generate deployconfig.yaml
35 case "$labname" in
36     intelpod[569]|orangepod[12]|cengnpod[12] )
37         array=(${labname//pod/ })
38         cp ../labconfig/${array[0]}/pod${array[1]}/labconfig.yaml .
39         python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
40         ;;
41     'attvirpod1' )
42         cp ../labconfig/att/virpod1/labconfig.yaml .
43         python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
44         ;;
45     'custom')
46         labfile=$2
47         if [ -e $labfile ]; then
48             cp $labfile ./labconfig.yaml || true
49         else
50             wget $labconfigfile -t 3 -T 10 -O ./labconfig.yaml || true
51             count=`wc -l labconfig.yaml  | cut -d " " -f 1`
52             if [ $count -lt 10 ]; then
53                 rm -rf labconfig.yaml
54             fi
55         fi
56         if [ ! -e ./labconfig.yaml ]; then
57             virtinstall=1
58             labname="default"
59             cp ../labconfig/default/labconfig.yaml ./
60             cp ../labconfig/default/deployconfig.yaml ./
61         else
62             python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
63             labname=`grep "maas_name" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
64         fi
65         ;;
66     * )
67         virtinstall=1
68         labname="default"
69         cp ../labconfig/default/labconfig.yaml ./
70         python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
71         ;;
72 esac
73
74 python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < labconfig.yaml > labconfig.json
75 python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < deployconfig.yaml > deployconfig.json
76
77 MAAS_IP=$(grep " ip_address" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //')
78 MAAS_NAME=`grep "maas_name" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
79 API_SERVER="http://$MAAS_IP/MAAS/api/2.0"
80 API_SERVERMAAS="http://$MAAS_IP/MAAS/"
81 PROFILE=ubuntu
82 MY_UPSTREAM_DNS=`grep "upstream_dns" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
83 SSH_KEY=`cat ~/.ssh/id_rsa.pub`
84 MAIN_ARCHIVE=`grep "main_archive" deployconfig.yaml | cut -d ':' -f 2-3 | sed -e 's/ //'`
85 URL=https://images.maas.io/ephemeral-v2/daily/
86 KEYRING_FILE=/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg
87 SOURCE_ID=1
88 FABRIC_ID=1
89 PRIMARY_RACK_CONTROLLER="$MAAS_IP"
90 SUBNET_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="admin")'.cidr | cut -d \" -f 2 `
91 SUBNETDATA_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="data")'.cidr | cut -d \" -f 2 `
92 SUBNETPUB_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="public")'.cidr | cut -d \" -f 2 `
93 SUBNETSTOR_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="storage")'.cidr | cut -d \" -f 2 `
94 SUBNETFLOAT_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="floating")'.cidr | cut -d \" -f 2 `
95 VLAN_TAG="untagged"
96
97 # In the case of a virtual deployment get deployconfig.yaml
98 if [ "$virtinstall" -eq 1 ]; then
99     ./cleanvm.sh || true
100 fi
101
102 #create backup directory
103 mkdir ~/joid_config/ || true
104
105 # Backup deployconfig.yaml in joid_config folder
106
107 if [ -e ./deployconfig.yaml ]; then
108     cp ./deployconfig.yaml ~/joid_config/
109     cp ./labconfig.yaml ~/joid_config/
110 fi
111
112 #
113 # Prepare local environment to avoid password asking
114 #
115
116 # make sure no password asked during the deployment.
117 sudoer_file=/etc/sudoers.d/90-joid-init
118 sudoer_entry="$USER ALL=(ALL) NOPASSWD:ALL"
119 if [ -e $sudoer_file ]; then
120     if ! sudo grep -q "$sudoer_entry" $sudoer_file; then
121         sudo sed -i -e "1i$sudoer_entry" $sudoer_file
122     fi
123 else
124     echo "$sudoer_entry" > 90-joid-init
125     sudo chown root:root 90-joid-init
126     sudo mv 90-joid-init /etc/sudoers.d/
127 fi
128
129 echo "... Deployment of maas Started ...."
130
131 #
132 # Virsh preparation
133 #
134
135 # define the pool and try to start even though its already exist.
136 # For fresh install this may or may not there.
137 sudo adduser $USER libvirtd
138 sudo virsh pool-define-as default --type dir --target /var/lib/libvirt/images/ || true
139 sudo virsh pool-start default || true
140 sudo virsh pool-autostart default || true
141
142 # In case of virtual install set network
143 if [ "$virtinstall" -eq 1 ]; then
144     sudo virsh net-dumpxml default > default-net-org.xml
145     sudo sed -i '/dhcp/d' default-net-org.xml
146     sudo sed -i '/range/d' default-net-org.xml
147     sudo virsh net-define default-net-org.xml
148     sudo virsh net-destroy default
149     sudo virsh net-start default
150     rm -f default-net-org.xml
151 fi
152
153 #
154 # Cleanup, juju init and config backup
155 #
156
157 # To avoid problem between apiclient/maas_client and apiclient from google
158 # we remove the package google-api-python-client from yardstick installer
159 if [ $(pip list |grep google-api-python-client |wc -l) == 1 ]; then
160     sudo pip uninstall google-api-python-client
161 fi
162
163
164 if [ ! -e ~maas/.ssh/id_rsa.pub ]; then
165     if [ ! -e $HOME/id_rsa_maas.pub ]; then
166         [ -e $HOME/id_rsa_maas ] && rm -f $HOME/id_rsa_maas
167         sudo su - $USER -c "echo |ssh-keygen -t rsa -f $HOME/id_rsa_maas"
168     fi
169     sudo -u maas mkdir ~maas/.ssh/ || true
170     sudo cp $HOME/id_rsa_maas ~maas/.ssh/id_rsa
171     sudo cp $HOME/id_rsa_maas.pub ~maas/.ssh/id_rsa.pub
172     sudo chown maas:maas ~maas/.ssh/id_rsa
173     sudo chown maas:maas ~maas/.ssh/id_rsa.pub
174 fi
175
176 # Ensure virsh can connect without ssh auth
177 sudo cat ~maas/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
178 sudo cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
179
180 #
181 # MAAS deploy
182 #
183
184 installmaas(){
185     sudo apt-get install maas maas-region-controller -y
186 }
187
188 #
189 # MAAS config
190 # https://insights.ubuntu.com/2016/01/23/maas-setup-deploying-openstack-on-maas-1-9-with-juju/
191 # http://blog.naydenov.net/2016/01/nodes-networking-deploying-openstack-on-maas-1-9-with-juju/
192 #
193 configuremaas(){
194     #reconfigure maas with correct MAAS address.
195     #Below code is needed as MAAS have issue in commisoning without restart.
196     sudo ./maas-reconfigure-region.sh $MAAS_IP
197     sleep 30
198     sudo maas-rack config --region-url http://$MAAS_IP:5240/MAAS
199
200     sudo maas createadmin --username=ubuntu --email=ubuntu@ubuntu.com --password=ubuntu || true
201     API_KEY=`sudo maas-region apikey --username=ubuntu`
202     maas login $PROFILE $API_SERVERMAAS $API_KEY
203     maas $PROFILE maas set-config name='main_archive' value=$MAIN_ARCHIVE || true
204     maas $PROFILE maas set-config name=upstream_dns value=$MY_UPSTREAM_DNS || true
205     maas $PROFILE maas set-config name='maas_name' value=$MAAS_NAME || true
206     maas $PROFILE maas set-config name='ntp_server' value='ntp.ubuntu.com' || true
207     maas $PROFILE sshkeys create "key=$SSH_KEY" || true
208
209     for tag in bootstrap compute control storage
210     do
211         maas $PROFILE tags create name=$tag || true
212     done
213
214     #create the required spaces.
215     maas $PROFILE space update 0 name=default || true
216     for space in unused admin-api internal-api public-api compute-data \
217                  compute-external storage-data storage-cluster
218     do
219         echo "Creating the space $space"
220         maas $PROFILE spaces create name=$space || true
221     done
222
223     #maas $PROFILE boot-source update $SOURCE_ID \
224     #     url=$URL keyring_filename=$KEYRING_FILE || true
225     #maas $PROFILE boot-resources import || true
226     #sleep 60
227
228     while [ "$(maas $PROFILE boot-resources is-importing)" == "true" ];
229     do
230         sleep 60
231     done
232 }
233
234 enablesubnetanddhcp(){
235     TEMP_CIDR=$1
236     enabledhcp=$2
237     space=$3
238
239     SUBNET_PREFIX=${TEMP_CIDR::-5}
240
241     IP_RES_RANGE_LOW="$SUBNET_PREFIX.1"
242     IP_RES_RANGE_HIGH="$SUBNET_PREFIX.39"
243
244     API_KEY=`sudo maas-region apikey --username=ubuntu`
245     maas login $PROFILE $API_SERVERMAAS $API_KEY
246
247     maas $PROFILE ipranges create type=reserved \
248          start_ip=$IP_RES_RANGE_LOW end_ip=$IP_RES_RANGE_HIGH \
249          comment='This is a reserved range' || true
250
251     IP_DYNAMIC_RANGE_LOW="$SUBNET_PREFIX.40"
252     IP_DYNAMIC_RANGE_HIGH="$SUBNET_PREFIX.150"
253
254     maas $PROFILE ipranges create type=dynamic \
255         start_ip=$IP_DYNAMIC_RANGE_LOW end_ip=$IP_DYNAMIC_RANGE_HIGH \
256         comment='This is a reserved dynamic range' || true
257
258     FABRIC_ID=$(maas $PROFILE subnet read $TEMP_CIDR | jq '.vlan.fabric_id')
259
260     PRIMARY_RACK_CONTROLLER=$(maas $PROFILE rack-controllers read | jq -r '.[0].system_id')
261
262     if [ "$space" == "admin" ]; then
263         MY_GATEWAY=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="admin")'.gateway | cut -d \" -f 2 `
264         #MY_NAMESERVER=`cat deployconfig.json | jq '.opnfv.upstream_dns' | cut -d \" -f 2`
265         if ([ $MY_GATEWAY ] && [ "$MY_GATEWAY" != "null" ]); then
266             maas $PROFILE subnet update $TEMP_CIDR gateway_ip=$MY_GATEWAY || true
267         fi
268         #maas $PROFILE subnet update $TEMP_CIDR dns_servers=$MY_NAMESERVER || true
269         #below command will enable the interface with internal-api space.
270         SPACEID=$(maas $PROFILE space read internal-api | jq '.id')
271         maas $PROFILE subnet update $TEMP_CIDR space=$SPACEID || true
272         if [ "$enabledhcp" == "true" ]; then
273             maas $PROFILE vlan update $FABRIC_ID $VLAN_TAG dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true
274         fi
275     elif [ "$space" == "data" ]; then
276         MY_GATEWAY=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="data")'.gateway | cut -d \" -f 2 `
277         if ([ $MY_GATEWAY ] && [ "$MY_GATEWAY" != "null" ]); then
278             maas $PROFILE subnet update $TEMP_CIDR gateway_ip=$MY_GATEWAY || true
279         fi
280         #below command will enable the interface with data-api space for data network.
281         SPACEID=$(maas $PROFILE space read admin-api | jq '.id')
282         maas $PROFILE subnet update $TEMP_CIDR space=$SPACEID || true
283         if [ "$enabledhcp" == "true" ]; then
284             maas $PROFILE vlan update $FABRIC_ID $VLAN_TAG dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true
285         fi
286     elif [ "$space" == "public" ]; then
287         MY_GATEWAY=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="data")'.public | cut -d \" -f 2 `
288         if ([ $MY_GATEWAY ] && [ "$MY_GATEWAY" != "null" ]); then
289             maas $PROFILE subnet update $TEMP_CIDR gateway_ip=$MY_GATEWAY || true
290         fi
291         #below command will enable the interface with public-api space for data network.
292         SPACEID=$(maas $PROFILE space read public-api | jq '.id')
293         maas $PROFILE subnet update $TEMP_CIDR space=$SPACEID || true
294         if [ "$enabledhcp" == "true" ]; then
295             maas $PROFILE vlan update $FABRIC_ID $VLAN_TAG dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true
296         fi
297     elif [ "$space" == "storage" ]; then
298         MY_GATEWAY=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="data")'.storage | cut -d \" -f 2 `
299         if ([ $MY_GATEWAY ] && [ "$MY_GATEWAY" != "null" ]); then
300             maas $PROFILE subnet update $TEMP_CIDR gateway_ip=$MY_GATEWAY || true
301         fi
302         #below command will enable the interface with public-api space for data network.
303         SPACEID=$(maas $PROFILE space read storage-data | jq '.id')
304         maas $PROFILE subnet update $TEMP_CIDR space=$SPACEID || true
305         if [ "$enabledhcp" == "true" ]; then
306             maas $PROFILE vlan update $FABRIC_ID $VLAN_TAG dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true
307         fi
308     fi
309 }
310
311 addnodes(){
312     API_KEY=`sudo maas-region apikey --username=ubuntu`
313     maas login $PROFILE $API_SERVERMAAS $API_KEY
314
315     # make sure there is no machine entry in maas
316     for m in $(maas $PROFILE machines read | jq -r '.[].system_id')
317     do
318         maas ubuntu machine delete $m
319     done
320
321     if [ "$virtinstall" -eq 1 ]; then
322         netw=" --network bridge=virbr0,model=virtio"
323     else
324         brid=`brctl show | grep 8000 | cut -d "8" -f 1 |  tr "\n" " " | tr "\t" " " | tr -s " "`
325
326         netw=""
327         for feature in $brid; do
328             if [ "$feature" == "" ]; then
329                 netw=$netw
330             elif [ "$feature" == "virbr0" ]; then
331                 netw=$netw
332             else
333                 netw=$netw" --network bridge="$feature",model=virtio"
334             fi
335         done
336     fi
337
338     sudo virt-install --connect qemu:///system --name bootstrap --ram 4098 --cpu host --vcpus 2 --video \
339                  cirrus --arch x86_64 --disk size=20,format=qcow2,bus=virtio,io=native,pool=default \
340                  $netw --boot network,hd,menu=off --noautoconsole \
341                  --vnc --print-xml | tee bootstrap
342
343     if [ "$virtinstall" -eq 1 ]; then
344         bootstrapmac=`grep  "mac address" bootstrap | head -1 | cut -d '"' -f 2`
345     else
346         bootstrapmac=""
347         bootstrapmacs=`grep  "mac address" bootstrap| cut -d '"' -f 2`
348         for mac in $bootstrapmacs; do
349             bootstrapmac=$bootstrapmac" mac_addresses="$mac
350         done
351     fi
352     sudo virsh -c qemu:///system define --file bootstrap
353     rm -f bootstrap
354
355     maas $PROFILE machines create autodetect_nodegroup='yes' name='bootstrap' \
356         tags='bootstrap' hostname='bootstrap' power_type='virsh' mac_addresses=$bootstrapmac \
357         power_parameters_power_address='qemu+ssh://'$USER'@'$MAAS_IP'/system' \
358         architecture='amd64/generic' power_parameters_power_id='bootstrap'
359
360     bootstrapid=$(maas $PROFILE machines read | jq -r '.[] | select(.hostname == "bootstrap").system_id')
361
362     maas $PROFILE tag update-nodes bootstrap add=$bootstrapid
363
364     if [ "$virtinstall" -eq 1 ]; then
365         units=`cat deployconfig.json | jq .opnfv.units`
366
367         until [ $(($units)) -lt 1 ]; do
368            units=$(($units - 1));
369            NODE_NAME=`cat labconfig.json | jq ".lab.racks[].nodes[$units].name" | cut -d \" -f 2 `
370
371             sudo virt-install --connect qemu:///system --name $NODE_NAME --ram 8192 --cpu host --vcpus 4 \
372                      --disk size=120,format=qcow2,bus=virtio,io=native,pool=default \
373                      $netw $netw --boot network,hd,menu=off --noautoconsole --vnc --print-xml | tee $NODE_NAME
374
375             nodemac=`grep  "mac address" $NODE_NAME | head -1 | cut -d '"' -f 2`
376             sudo virsh -c qemu:///system define --file $NODE_NAME
377             rm -f $NODE_NAME
378             maas $PROFILE machines create autodetect_nodegroup='yes' name=$NODE_NAME \
379                 tags='control compute' hostname=$NODE_NAME power_type='virsh' mac_addresses=$nodemac \
380                 power_parameters_power_address='qemu+ssh://'$USER'@'$MAAS_IP'/system' \
381                 architecture='amd64/generic' power_parameters_power_id=$NODE_NAME
382             nodeid=$(maas $PROFILE machines read | jq -r '.[] | select(.hostname == '\"$NODE_NAME\"').system_id')
383             maas $PROFILE tag update-nodes control add=$nodeid || true
384             maas $PROFILE tag update-nodes compute add=$nodeid || true
385         done
386     else
387        units=`cat deployconfig.json | jq .opnfv.units`
388
389        until [ $(($units)) -lt 1 ]; do
390            units=$(($units - 1));
391            NODE_NAME=`cat labconfig.json | jq ".lab.racks[].nodes[$units].name" | cut -d \" -f 2 `
392            MAC_ADDRESS=`cat labconfig.json | jq ".lab.racks[].nodes[$units].nics[] | select(.spaces[]==\"admin\").mac"[0] | cut -d \" -f 2 `
393            POWER_TYPE=`cat labconfig.json | jq ".lab.racks[].nodes[$units].power.type" | cut -d \" -f 2 `
394            POWER_IP=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].power.address" | cut -d \" -f 2 `
395            POWER_USER=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].power.user" | cut -d \" -f 2 `
396            POWER_PASS=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].power.pass" | cut -d \" -f 2 `
397
398            maas $PROFILE machines create autodetect_nodegroup='yes' name=$NODE_NAME \
399                hostname=$NODE_NAME power_type=$POWER_TYPE power_parameters_power_address=$POWER_IP \
400                power_parameters_power_user=$POWER_USER power_parameters_power_pass=$POWER_PASS mac_addresses=$MAC_ADDRESS \
401                architecture='amd64/generic'
402        done
403     fi
404
405     # make sure nodes are added into MAAS and none of them is in commisoning state
406     while [ "$(maas $PROFILE nodes read | grep  Commissioning )" ];
407     do
408         sleep 60
409     done
410
411 }
412
413 #configure MAAS with the different options.
414 configuremaas
415
416 # functioncall with subnetid to add and second parameter is dhcp enable
417 # third parameter will define the space. It is required to have admin
418
419 if [ $SUBNET_CIDR ]; then
420     enablesubnetanddhcp $SUBNET_CIDR true admin
421 else
422     echo "atleast admin network should be defined"
423     echo "MAAS configuration can not continue"
424     exit 2
425 fi
426
427 if [ $SUBNETDATA_CIDR ]; then
428     enablesubnetanddhcp $SUBNETDATA_CIDR false data
429 fi
430 if [ $SUBNETPUB_CIDR ]; then
431     enablesubnetanddhcp $SUBNETPUB_CIDR false public
432 fi
433
434 if [ $SUBNETSTOR_CIDR ]; then
435     enablesubnetanddhcp $SUBNETSTOR_CIDR false storage
436 fi
437
438 #just make sure rack controller has been synced and import only
439 # just whether images have been imported or not.
440 sleep 120
441
442 #lets add the nodes now. Currently works only for virtual deploymnet.
443 addnodes
444
445 echo "... Deployment of maas finish ...."
446
447 #Added the Qtip public to run the Qtip test after install on bare metal nodes.
448 #maas $PROFILE sshkeys new key="`cat ./maas/sshkeys/QtipKey.pub`"
449 #maas $PROFILE sshkeys new key="`cat ./maas/sshkeys/DominoKey.pub`"
450
451 #
452 # Functions for MAAS network customization
453 #
454
455 #Below function will mark the interfaces in Auto mode to enbled by MAAS
456 # using hostname of the node added into MAAS
457 enableautomodebyname() {
458     API_KEY=`sudo maas-region apikey --username=ubuntu`
459     maas login $PROFILE $API_SERVERMAAS $API_KEY
460
461     if [ ! -z "$4" ]; then
462         for i in `seq 1 7`;
463         do
464             nodes=$(maas $PROFILE nodes read | jq -r '.[].system_id')
465             if [ ! -z "$nodes" ]; then
466                 maas $PROFILE interface link-subnet $nodes $1  mode=$2 subnet=$3 || true
467             fi
468        done
469     fi
470 }
471
472 #Below function will create vlan and update interface with the new vlan
473 # will return the vlan id created
474 crvlanupdsubnet() {
475     API_KEY=`sudo maas-region apikey --username=ubuntu`
476     maas login $PROFILE $API_SERVERMAAS $API_KEY
477
478     # TODO: fix subnet creation and use 'jq'
479     newvlanid=`maas $PROFILE vlans create $2 name=$3 vid=$4 | grep resource | cut -d '/' -f 6 `
480     maas $PROFILE subnet update $5 vlan=$newvlanid
481     eval "$1"="'$newvlanid'"
482 }
483
484 #Below function will create interface with new vlan and bind to physical interface
485 crnodevlanint() {
486     API_KEY=`sudo maas-region apikey --username=ubuntu`
487     maas login $PROFILE $API_SERVERMAAS $API_KEY
488
489     for node in $(maas $PROFILE nodes read | jq -r '.[].system_id')
490     do
491         vlanid=$(maas $PROFILE subnets read | jq '.[].vlan | select(.vid=='$1')'.id)
492         fabricid=`maas $PROFILE subnets read | jq '.[].vlan | select(.vid=='$1')'.fabric_id`
493         interface=`maas $PROFILE interfaces read $node | jq '.[] | select(.vlan.fabric_id=='$fabricid')'.id`
494         maas $PROFILE interfaces create-vlan $node vlan=$vlanid parent=$interface || true
495      done
496  }
497
498 #function for JUJU envronment
499
500 addcredential() {
501     API_KEY=`sudo maas-region apikey --username=ubuntu`
502     controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
503     cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
504
505     echo  "credentials:" > credential.yaml
506     echo  "  $controllername:" >> credential.yaml
507     echo  "    opnfv-credentials:" >> credential.yaml
508     echo  "      auth-type: oauth1" >> credential.yaml
509     echo  "      maas-oauth: $API_KEY" >> credential.yaml
510
511     juju add-credential $controllername -f credential.yaml --replace
512 }
513
514 addcloud() {
515     controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
516     cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
517
518     echo "clouds:" > maas-cloud.yaml
519     echo "   $cloudname:" >> maas-cloud.yaml
520     echo "      type: maas" >> maas-cloud.yaml
521     echo "      auth-types: [oauth1]" >> maas-cloud.yaml
522     echo "      endpoint: $API_SERVERMAAS" >> maas-cloud.yaml
523
524     juju add-cloud $cloudname maas-cloud.yaml --replace
525 }
526
527 #
528 # VLAN customization
529 #
530
531 case "$labname" in
532     'intelpod9' )
533         maas refresh
534         crvlanupdsubnet vlan904 fabric-1 "MgmtNetwork" 904 2 || true
535         crvlanupdsubnet vlan905 fabric-2 "PublicNetwork" 905 3 || true
536         crnodevlanint $vlan905 eth1 || true
537         crnodevlanint $vlan905 eth3 || true
538         enableautomodebyname eth1.905 AUTO "10.9.15.0/24" || true
539         enableautomodebyname eth3.905 AUTO "10.9.15.0/24" || true
540         enableautomodebyname eth0 AUTO "10.9.12.0/24" || true
541         enableautomodebyname eth2 AUTO "10.9.12.0/24" || true
542         ;;
543 esac
544
545 #
546 # Enable MAAS nodes interfaces
547 #
548 API_KEY=`sudo maas-region apikey --username=ubuntu`
549 maas login $PROFILE $API_SERVERMAAS $API_KEY
550
551 if [ -e ./labconfig.json ]; then
552     # We will configure all node, so we need the qty, and loop on it
553     NODE_QTY=$(cat labconfig.json | jq --raw-output '.lab.racks[0].nodes[]'.name | wc -l)
554     NODE_QTY=$((NODE_QTY-1))
555     for NODE_ID in $(seq 0 $NODE_QTY); do
556         # Get the NAME/SYS_ID of this node
557         NODE_NAME=$(cat labconfig.json | jq --raw-output ".lab.racks[0].nodes[$NODE_ID].name")
558         NODE_SYS_ID=$(maas $PROFILE nodes read | jq -r ".[] |  select(.hostname==\"$NODE_NAME\")".system_id)
559         echo ">>> Configuring node $NODE_NAME [$NODE_ID][$NODE_SYS_ID]"
560         # Recover the network interfaces list and configure each one
561         #   with sorting the list, we have hardware interface first, than the vlan interfaces
562         IF_LIST=$(cat labconfig.json | jq --raw-output ".lab.racks[0].nodes[$NODE_ID].nics[] ".ifname )
563         for IF_NAME in $IF_LIST; do
564             # get the space of the interface
565             IF_SPACE=$(cat labconfig.json | jq --raw-output ".lab.racks[0].nodes[$NODE_ID].nics[] | select(.ifname==\"$IF_NAME\") ".spaces[])
566             case "$IF_SPACE" in
567                 'data') SUBNET_CIDR=$SUBNETDATA_CIDR; IF_MODE='AUTO' ;;
568                 'public') SUBNET_CIDR=$SUBNETPUB_CIDR; IF_MODE='AUTO' ;;
569                 'storage') SUBNET_CIDR=$SUBNETSTOR_CIDR; IF_MODE='AUTO' ;;
570                 'floating') SUBNET_CIDR=$SUBNETFLOAT_CIDR; IF_MODE='link_up' ;;
571                 *) SUBNET_CIDR='null'; IF_MODE='null'; echo "      >>> Unknown SPACE" ;;
572             esac
573             echo "   >>> Configuring interface $IF_NAME [$IF_SPACE][$SUBNET_CIDR]"
574
575             # if we have a vlan parameter in the space config
576             IF_VLAN=$(cat labconfig.json | jq --raw-output ".opnfv.spaces[] | select(.type==\"$IF_SPACE\")".vlan)
577             if ([ -z $IF_VLAN ] && [ $IF_NAME =~ \. ]); then
578                 # We have no vlan specified on spaces, but we have a vlan subinterface
579                 IF_VLAN = ${IF_NAME##*.}; fi
580
581             # in case of interface renaming
582             IF_NEWNAME=$IF_NAME
583
584             if ([ $IF_NEWNAME ] && [ "$IF_NEWNAME" != "null" ]); then
585                 # rename interface if needed
586                 IF_MACLOWER=$( cat labconfig.json | jq ".lab.racks[0].nodes[$NODE_ID].nics[] | select(.ifname==\"$IF_NEWNAME\")".mac[0])
587                 IF_MAC=(${IF_MACLOWER,,})
588                 IF_ID=$( maas ubuntu interfaces read $NODE_SYS_ID | jq ".[] | select(.mac_address==$IF_MAC)".id)
589                 maas $PROFILE interface update $NODE_SYS_ID $IF_ID name=$IF_NEWNAME
590                 IF_NAME=$IF_NEWNAME
591             fi
592
593             # In case of a VLAN interface
594             if ([ $IF_VLAN ] && [ "$IF_VLAN" != "null" ]); then
595                 echo "      >>> Configuring VLAN $IF_VLAN"
596                 VLANID=$(maas $PROFILE subnets read | jq ".[].vlan | select(.vid==$IF_VLAN)".id)
597                 FABRICID=$(maas $PROFILE subnets read | jq ".[].vlan | select(.vid==$IF_VLAN)".fabric_id)
598                 INTERFACE=$(maas $PROFILE interfaces read $NODE_SYS_ID | jq ".[] | select(.vlan.fabric_id==$FABRICID)".id)
599                 if [[ -z $INTERFACE ]]; then
600                     # parent interface is not set because it does not have a SUBNET_CIDR
601                     PARENT_VLANID=$(maas $PROFILE fabrics read | jq ".[].vlans[] | select(.fabric_id==$FABRICID and .name==\"untagged\")".id)
602                     # If we need to rename the interface, use new interface name
603                     if ([ $IF_NEWNAME ] && [ "$IF_NEWNAME" != "null" ]); then
604                         PARENT_IF_NAME=${IF_NEWNAME%%.*}
605                         IF_NAME=$IF_NEWNAME
606                     else
607                         PARENT_IF_NAME=${IF_NAME%%.*}
608                     fi
609                     # We set the physical interface to the targeted fabric
610                     maas $PROFILE interface update $NODE_SYS_ID $PARENT_IF_NAME vlan=$PARENT_VLANID
611                     sleep 2
612                     INTERFACE=$(maas $PROFILE interfaces read $NODE_SYS_ID | jq ".[] | select(.vlan.fabric_id==$FABRICID)".id)
613                 fi
614                 maas $PROFILE interfaces create-vlan $NODE_SYS_ID vlan=$VLANID parent=$INTERFACE || true
615             fi
616             # Configure the interface
617             if ([ $SUBNET_CIDR ] && [ "$SUBNET_CIDR" != "null" ]); then
618                 VLANID=$(maas $PROFILE subnet read $SUBNET_CIDR | jq -r '.vlan.id')
619                 if !([ $IF_VLAN ] && [ "$IF_VLAN" != "null" ]); then
620                     # If this interface is not a VLAN (done withe create-vlan)
621                     maas $PROFILE interface update $NODE_SYS_ID $IF_NAME vlan=$VLANID
622                 fi
623                 maas $PROFILE interface link-subnet $NODE_SYS_ID $IF_NAME  mode=$IF_MODE subnet=$SUBNET_CIDR || true
624                 sleep 2
625             else
626                 echo "      >>> Not configuring, we have an empty Subnet CIDR"
627             fi
628
629         done
630     done
631 fi
632
633 # Add the cloud and controller credentials for MAAS for that lab.
634 jujuver=`juju --version`
635
636 if [[ "$jujuver" > "2" ]]; then
637     addcloud
638     addcredential
639 fi
640
641 #
642 # End of scripts
643 #
644 echo " .... MAAS deployment finished successfully ...."