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