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