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