82c0044a85d1834e28037090fb9b35b768f8a8eb
[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 # As we use kvm so setup network on admin network
213 ADMIN_BR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="admin")'.bridge | cut -d \" -f 2 `
214 sed -i "s@brAdm@$ADMIN_BR@" net.xml
215 sudo virsh net-destroy default || true
216 sudo virsh net-undefine default || true
217 sudo virsh net-define net.xml || true
218 sudo virsh net-start default || true
219
220 #
221 # Cleanup, juju init and config backup
222 #
223
224 # To avoid problem between apiclient/maas_client and apiclient from google
225 # we remove the package google-api-python-client from yardstick installer
226 if [ $(pip list --format=columns | grep google-api-python-client | wc -l) == 1 ]; then
227     sudo pip uninstall google-api-python-client
228 fi
229
230 if [ "$snapinstall" -eq "0" ]; then
231     if [ ! -e ~maas/.ssh/id_rsa.pub ]; then
232         if [ ! -e $HOME/id_rsa_maas.pub ]; then
233             [ -e $HOME/id_rsa_maas ] && rm -f $HOME/id_rsa_maas
234             sudo su - $USER -c "echo |ssh-keygen -t rsa -f $HOME/id_rsa_maas"
235         fi
236         sudo -u maas mkdir ~maas/.ssh/ || true
237         sudo cp $HOME/id_rsa_maas ~maas/.ssh/id_rsa
238         sudo cp $HOME/id_rsa_maas.pub ~maas/.ssh/id_rsa.pub
239         sudo chown maas:maas ~maas/.ssh/id_rsa
240         sudo chown maas:maas ~maas/.ssh/id_rsa.pub
241         sudo cat ~maas/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
242     fi
243 else
244     if [ ! -e /root/.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 root mkdir /root/.ssh/ || true
250         sudo cp $HOME/id_rsa_maas /root/.ssh/id_rsa
251         sudo cp $HOME/id_rsa_maas.pub /root/.ssh/id_rsa.pub
252         sudo chown root:root /root/.ssh/id_rsa
253         sudo chown root:root /root/.ssh/id_rsa.pub
254         sudo cat /root/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
255     fi
256 fi
257
258 # Ensure virsh can connect without ssh auth
259 sudo cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
260
261 if [ "$snapinstall" -eq "1" ]; then
262     sudo maas init --mode all --maas-url http://$MAAS_IP:5240/MAAS --admin-username $PROFILE \
263                    --admin-password $PROFILE --admin-email ubuntu@ubuntu.com || true
264     API_KEY=`sudo maas apikey --username=$PROFILE`
265 else
266     sudo maas-rack config --region-url http://$MAAS_IP:5240/MAAS
267     sudo maas createadmin --username=$PROFILE --email=ubuntu@ubuntu.com --password=$PROFILE || true
268     API_KEY=`sudo maas-region apikey --username=$PROFILE`
269 fi
270 #
271 # MAAS config
272 # https://insights.ubuntu.com/2016/01/23/maas-setup-deploying-openstack-on-maas-1-9-with-juju/
273 # http://blog.naydenov.net/2016/01/nodes-networking-deploying-openstack-on-maas-1-9-with-juju/
274 #
275 configuremaas(){
276     #reconfigure maas with correct MAAS address.
277     maas login $PROFILE $API_SERVERMAAS $API_KEY
278     maas $PROFILE maas set-config name='main_archive' value=$MAIN_ARCHIVE || true
279     maas $PROFILE maas set-config name=upstream_dns value=$MY_UPSTREAM_DNS || true
280     maas $PROFILE maas set-config name='maas_name' value=$MAAS_NAME || true
281     maas $PROFILE maas set-config name='ntp_server' value='ntp.ubuntu.com' || true
282     maas $PROFILE domain update 0 name=$MAAS_NAME  || true
283     maas $PROFILE sshkeys create "key=$SSH_KEY" || true
284
285     for tag in bootstrap compute control storage
286     do
287         maas $PROFILE tags create name=$tag || true
288     done
289
290     #below tag would be used to enable huge pages for DPDK and SRIOV enablement in Ubuntu kernel via MAAS
291     maas $PROFILE tags create name='opnfv-dpdk' comment='OPNFV DPDK enablement' \
292          kernel_opts='hugepagesz=2M hugepages=1024 hugepagesz=1G hugepages=20 default_hugepagesz=1G intel_iommu=on' || true
293
294     #maas $PROFILE package-repositories create name="Ubuntu  Proposed new" \
295     #     url="http://archive.ubuntu.com/ubuntu" components="main" \
296     #     distributions="xenial-proposed" arches=amd64,i386
297
298     #create the required spaces.
299     maas $PROFILE space update 0 name=default || true
300     for space in admin-api internal-api public-api \
301                  storage-access storage-cluster admin \
302                  tenant-data tenant-api tenant-public  os-api
303     do
304         echo_info "Creating the space $space"
305         maas $PROFILE spaces create name=$space || true
306     done
307
308     maas $PROFILE boot-source update $SOURCE_ID \
309          url=$URL keyring_filename=$KEYRING_FILE || true
310
311     maas $PROFILE boot-source-selections create 1 \
312          os="ubuntu" release="xenial" arches="amd64" \
313          labels="*" || true
314     maas $PROFILE boot-source-selections create 1 \
315          os="ubuntu" release="bionic" arches="amd64" \
316          labels="*" || true
317
318     if [ $NODE_ARCTYPE != "x86_64" ] ; then
319         maas $PROFILE boot-source-selection update 1 1 arches="$NODE_ARCHES" || true
320         maas $PROFILE boot-source-selection update 1 2 arches="$NODE_ARCHES" || true
321     fi
322
323     if [ "$snapinstall" -eq "0" ]; then
324         maas $PROFILE boot-resources import || true
325     fi
326
327     while [ "$(maas $PROFILE boot-resources is-importing)" == "true" ];
328     do
329         sleep 60
330     done
331 }
332
333 setupspacenetwork(){
334     #get space, subnet and vlan and create accordingly.
335     #for type in admin osapi data storage external floating public; do
336     nettypes=`cat labconfig.json | jq '.opnfv.spaces[]'.type | cut -d \" -f 2`
337     for type in $nettypes; do
338         config_done=0
339         SPACE_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="'$type'")'.cidr | cut -d \" -f 2 `
340         SPACE_VLAN=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="'$type'")'.vlan | cut -d \" -f 2 `
341         SPACE_GWAY=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="'$type'")'.gateway | cut -d \" -f 2 `
342         NET_FABRIC_NAME=$(maas $PROFILE subnets read | jq -r ".[] |  select(.cidr==\"$SPACE_CIDR\")".vlan.fabric)
343         if ([ $NET_FABRIC_NAME ] && [ $NET_FABRIC_NAME != "null" ]); then
344             NET_FABRIC_VID=$(maas $PROFILE subnets read | jq -r ".[] |  select(.cidr==\"$SPACE_CIDR\")".vlan.vid)
345             NET_FABRIC_ID=$(maas $PROFILE fabric read $NET_FABRIC_NAME | jq -r ".id")
346             if ([ $SPACE_VLAN == "null" ]); then
347                 SPACE_VLAN=0
348             fi
349             NET_VLAN_ID=$(maas $PROFILE vlans read $NET_FABRIC_ID | jq -r ".[] |  select(.vid==\"$SPACE_VLAN\")".id)
350             NET_VLAN_VID=$(maas $PROFILE vlans read $NET_FABRIC_ID | jq -r ".[] |  select(.vid==\"$SPACE_VLAN\")".vid)
351             if ([ $SPACE_GWAY ] && [ "$SPACE_GWAY" != "null" ]); then
352                 maas $PROFILE subnet update $SPACE_CIDR gateway_ip=$SPACE_GWAY || true
353             fi
354             if ([ $NET_VLAN_VID ] && [ $NET_VLAN_VID == "0" ]); then
355                 config_done=1
356             elif ([ $NET_VLAN_VID ] && [ $NET_VLAN_VID == $SPACE_VLAN ]); then
357                 config_done=1
358             else
359                 NET_VLAN_ID=$(maas $PROFILE vlans create $NET_FABRIC_ID vid=$SPACE_VLAN | jq --raw-output ".id")
360                 if ([ $NET_VLAN_ID ] && [ $NET_VLAN_ID != "null" ]); then
361                     maas $PROFILE subnet update $SPACE_CIDR vlan=$NET_VLAN_ID || true
362                     NET_FABRIC_VID=$SPACE_VLAN
363                 fi
364             fi
365         else
366             if ([ $SPACE_CIDR ] && [ "$SPACE_CIDR" != "null" ]); then
367                 FABRIC_ID=$(maas $PROFILE fabrics create name=opnfv$type | jq --raw-output ".id")
368                 NET_FABRIC_ID=$FABRIC_ID
369                 NET_FABRIC_VID=$SPACE_VLAN
370                 if ([ $SPACE_VLAN ] && [ "$SPACE_VLAN" != "null" ]); then
371                     NET_VLAN_ID=$(maas $PROFILE vlans create $FABRIC_ID vid=$SPACE_VLAN | jq --raw-output ".id")
372                     if ([ $SPACE_GWAY ] && [ "$SPACE_GWAY" != "null" ]); then
373                         maas $PROFILE subnets create fabric=$FABRIC_ID cidr=$SPACE_CIDR vid=$VID_ID gateway_ip=$SPACE_GWAY || true
374                     else
375                         maas $PROFILE subnets create fabric=$FABRIC_ID cidr=$SPACE_CIDR vid=$VID_ID || true
376                     fi
377                     NET_FABRIC_VID=$VLAN_ID
378                 else
379                     if ([ $SPACE_GWAY ] && [ "$SPACE_GWAY" != "null" ]); then
380                         maas $PROFILE subnets create fabric=$FABRIC_ID cidr=$SPACE_CIDR vid="0" gateway_ip=$SPACE_GWAY || true
381                     else
382                         maas $PROFILE subnets create fabric=$FABRIC_ID cidr=$SPACE_CIDR vid="0" || true
383                     fi
384                 fi
385                 NET_FABRIC_NAME=$(maas $PROFILE subnets read | jq -r ".[] |  select(.cidr==\"$SPACE_CIDR\")".vlan.fabric)
386             fi
387         fi
388         case "$type" in
389             'admin')           JUJU_SPACE="internal-api";  DHCP='enabled' ;;
390             'data')            JUJU_SPACE="tenant-data";   DHCP='' ;;
391             'public')          JUJU_SPACE="public-api";    DHCP='' ;;
392             'storage')         JUJU_SPACE="storage-cluster";   DHCP='' ;;
393             'storageaccess')   JUJU_SPACE="storage-data";  DHCP='' ;;
394             'floating')        JUJU_SPACE="tenant-public"; DHCP='' ;;
395             'osapi')           JUJU_SPACE="os-api";        DHCP='' ;;
396             *)                 JUJU_SPACE='default';       DHCP='OFF'; echo_info "      >>> Unknown SPACE" ;;
397         esac
398         JUJU_SPACE_ID=$(maas $PROFILE spaces read | jq -r ".[] |  select(.name==\"$JUJU_SPACE\")".id)
399         JUJU_VLAN_VID=$(maas $PROFILE subnets read | jq -r ".[] |  select(.name==\"$SPACE_CIDR\")".vlan.vid)
400         NET_FABRIC_ID=$(maas $PROFILE fabric read $NET_FABRIC_NAME | jq -r ".id")
401         if ([ $NET_FABRIC_ID ] && [ $NET_FABRIC_ID != "null" ]); then
402             if ([ $JUJU_VLAN_VID ] && [ $JUJU_VLAN_VID != "null" ]); then
403                 maas $PROFILE vlan update $NET_FABRIC_ID $JUJU_VLAN_VID space=$JUJU_SPACE_ID || true
404             fi
405         fi
406         if ([ $type == "admin" ]); then
407             # If we have a network, we create it
408             if ([ $NET_FABRIC_ID ]); then
409                 # Set ranges
410                 SUBNET_PREFIX=${SPACE_CIDR::-5}
411                 IP_RES_RANGE_LOW="$SUBNET_PREFIX.1"
412                 IP_RES_RANGE_HIGH="$SUBNET_PREFIX.39"
413                 IP_DYNAMIC_RANGE_LOW="$SUBNET_PREFIX.40"
414                 IP_DYNAMIC_RANGE_HIGH="$SUBNET_PREFIX.150"
415                 maas $PROFILE ipranges create type=reserved \
416                      start_ip=$IP_RES_RANGE_LOW end_ip=$IP_RES_RANGE_HIGH \
417                      comment='This is a reserved range' || true
418                 maas $PROFILE ipranges create type=dynamic \
419                     start_ip=$IP_DYNAMIC_RANGE_LOW end_ip=$IP_DYNAMIC_RANGE_HIGH \
420                     comment='This is a reserved dynamic range' || true
421                 # Set DHCP
422                 PRIMARY_RACK_CONTROLLER=$(maas $PROFILE rack-controllers read | jq -r '.[0].system_id')
423                 maas $PROFILE vlan update $NET_FABRIC_ID $NET_FABRIC_VID dhcp_on=True primary_rack=$PRIMARY_RACK_CONTROLLER || true
424             fi
425         elif ([ $type == "public" ] || [ $type == "osapi" ]); then
426             # If we have a network, we create reserve IPS for public IP range
427             if ([ $NET_FABRIC_ID ]); then
428                 # Set ranges
429                 SUBNET_PREFIX=${SPACE_CIDR::-5}
430                 IP_RES_RANGE_LOW="$SUBNET_PREFIX.1"
431                 IP_RES_RANGE_HIGH="$SUBNET_PREFIX.39"
432                 maas $PROFILE ipranges create type=reserved \
433                      start_ip=$IP_RES_RANGE_LOW end_ip=$IP_RES_RANGE_HIGH \
434                      comment='This is a reserved range' || true
435             fi
436         else
437             if ([ $NET_FABRIC_ID ]); then
438                 # Set ranges
439                 SUBNET_PREFIX=${SPACE_CIDR::-5}
440                 IP_RES_RANGE_LOW="$SUBNET_PREFIX.1"
441                 IP_RES_RANGE_HIGH="$SUBNET_PREFIX.5"
442                 maas $PROFILE ipranges create type=reserved \
443                      start_ip=$IP_RES_RANGE_LOW end_ip=$IP_RES_RANGE_HIGH \
444                      comment='This is a reserved range' || true
445             fi
446         fi
447     done
448 }
449
450 addnodes(){
451     maas login $PROFILE $API_SERVERMAAS $API_KEY
452
453     maas $PROFILE maas set-config name=default_min_hwe_kernel value=hwe-16.04-edge || true
454
455     # make sure there is no machine entry in maas
456     for m in $(maas $PROFILE machines read | jq -r '.[].system_id')
457     do
458         maas $PROFILE machine delete $m
459     done
460     podno=$(maas $PROFILE pods read | jq -r ".[]".id)
461     maas $PROFILE pod delete $podno || true
462
463     # if we have a virshurl configuration we use it, else we use local
464     VIRSHURL=$(cat labconfig.json | jq -r '.opnfv.virshurl')
465     if ([ $VIRSHURL == "" ] || [ "$VIRSHURL" == "null" ]); then
466         VIRSHIP=$MAAS_IP
467         VIRSHURL="qemu+ssh://$USER@$VIRSHIP/system "
468         VIRSHHOST=""
469     else
470         VIRSHHOST=$(echo $VIRSHURL| cut -d\/ -f 3 | cut -d@ -f2)
471         VIRSHIP=""  # TODO: parse from $VIRSHURL if needed
472     fi
473
474     if ([ "$VIRSHHOST" != "" ]); then
475         # Get the bridge hosting the remote virsh
476         brid=$(ssh $VIRSHHOST "ip a l | grep $VIRSHHOST | perl -pe 's/.* (.*)\$/\$1/g'")
477         netw=" --network bridge=$brid,model=virtio"
478         # prepare a file containing virsh remote url to connect without adding it n command line
479         echo "export VIRSH_DEFAULT_CONNECT_URI=$VIRSHURL" > virsh_uri.sh
480     else
481         netw=""
482
483         brid=`sudo brctl show | grep 8000 | cut -d "8" -f 1 |  tr "\n" " " | tr "    " " " | tr -s " "`
484         ADMIN_BR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="admin")'.bridge | cut -d \" -f 2 `
485
486         for feature in $brid; do
487             if ([ "$feature" == "$ADMIN_BR" ]); then
488                 netw=$netw" --network bridge="$feature",model=virtio"
489             else
490                 netw=$netw
491             fi
492         done
493     fi
494
495     # Add server fingerprint to known hosts to prevent security prompt in the
496     # SSH connection during the virt-install
497     if [ $VIRSHIP != "" ]; then
498         # Check if the IP is not already present among the known hosts
499         if ! ssh-keygen -F $VIRSHIP > /dev/null ; then
500             echo_info "SSH fingerprint of the host is not known yet, adding to known_hosts"
501             ssh-keyscan -H $VIRSHIP >> ~/.ssh/known_hosts
502         fi
503     fi
504
505     echo_info "Creating and adding bootstrap node"
506
507     virt-install --connect $VIRSHURL --name bootstrap --ram 4098 --cpu $CPU_MODEL --vcpus 2 \
508                  --disk size=20,format=qcow2,bus=virtio,cache=directsync,io=native,pool=default \
509                  $netw --boot network,hd,menu=off --video virtio --noautoconsole --autostart \
510                  --accelerate --print-xml | tee bootstrap
511
512     if [ "$virtinstall" -eq 1 ]; then
513         bootstrapmac=`grep  "mac address" bootstrap | head -1 | cut -d '"' -f 2`
514     else
515         bootstrapmac=""
516         bootstrapmacs=`grep  "mac address" bootstrap| cut -d '"' -f 2`
517         for mac in $bootstrapmacs; do
518             bootstrapmac=$bootstrapmac" mac_addresses="$mac
519         done
520     fi
521     virsh -c $VIRSHURL define --file bootstrap
522
523     rm -f bootstrap
524
525     sleep 60
526
527     maas $PROFILE machines create autodetect_nodegroup='yes' name='bootstrap' \
528         tags='bootstrap' hostname='bootstrap' power_type='virsh' mac_addresses=$bootstrapmac \
529         power_parameters_power_address="$VIRSHURL" \
530         architecture=$NODE_ARC power_parameters_power_id='bootstrap'
531
532     bootstrapid=$(maas $PROFILE machines read | jq -r '.[] | select(.hostname == "bootstrap").system_id')
533
534     maas $PROFILE tag update-nodes bootstrap add=$bootstrapid
535
536     if [ "$virtinstall" -eq 1 ]; then
537         units=`cat deployconfig.json | jq .opnfv.units`
538
539         until [ $(($units)) -lt 1 ]; do
540            units=$(($units - 1));
541            NODE_NAME=`cat labconfig.json | jq ".lab.racks[].nodes[$units].name" | cut -d \" -f 2 `
542
543             virt-install --connect $VIRSHURL --name $NODE_NAME --ram 8192 --cpu $CPU_MODEL --vcpus 4 \
544                      --disk size=120,format=qcow2,bus=virtio,cache=directsync,io=native,pool=default \
545                      $netw $netw --boot network,hd,menu=off --video virtio --noautoconsole --autostart \
546                      --accelerate --print-xml | tee $NODE_NAME
547
548             nodemac=`grep  "mac address" $NODE_NAME | head -1 | cut -d '"' -f 2`
549             virsh -c $VIRSHURL define --file $NODE_NAME
550
551             rm -f $NODE_NAME
552             maas $PROFILE machines create autodetect_nodegroup='yes' name=$NODE_NAME \
553                 tags='control compute' hostname=$NODE_NAME power_type='virsh' mac_addresses=$nodemac \
554                 power_parameters_power_address="$VIRSHURL" \
555                 architecture=$NODE_ARC power_parameters_power_id=$NODE_NAME
556             nodeid=$(maas $PROFILE machines read | jq -r '.[] | select(.hostname == '\"$NODE_NAME\"').system_id')
557             maas $PROFILE tag update-nodes control add=$nodeid || true
558             maas $PROFILE tag update-nodes compute add=$nodeid || true
559         done
560     else
561         units=`cat deployconfig.json | jq .opnfv.units`
562
563         until [ $(($units)) -lt 1 ]; do
564             units=$(($units - 1));
565             NODE_NAME=`cat labconfig.json | jq ".lab.racks[].nodes[$units].name" | cut -d \" -f 2 `
566             MAC_ADDRESS=`cat labconfig.json | jq ".lab.racks[].nodes[$units].nics[] | select(.spaces[]==\"admin\").mac"[0] | cut -d \" -f 2 `
567             POWER_TYPE=`cat labconfig.json | jq ".lab.racks[].nodes[$units].power.type" | cut -d \" -f 2 `
568             POWER_IP=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].power.address" | cut -d \" -f 2 `
569             POWER_USER=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].power.user" | cut -d \" -f 2 `
570             POWER_PASS=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].power.pass" | cut -d \" -f 2 `
571             NODE_ARCTYPE=`cat labconfig.json |  jq ".lab.racks[].nodes[$units].architecture" | cut -d \" -f 2 `
572
573             if  [ "ppc64le" == "$NODE_ARCTYPE" ]; then
574                 NODE_ARCHES="ppc64el"
575             elif [ "aarch64" == "$NODE_ARCTYPE" ]; then
576                 NODE_ARCHES="arm64"
577             else
578                 NODE_ARCHES="amd64"
579             fi
580
581             NODE_ARC="$NODE_ARCHES/generic"
582
583             echo_info "Creating node $NODE_NAME"
584             maas $PROFILE machines create autodetect_nodegroup='yes' name=$NODE_NAME \
585                 hostname=$NODE_NAME power_type=$POWER_TYPE power_parameters_power_address=$POWER_IP \
586                 power_parameters_power_user=$POWER_USER power_parameters_power_pass=$POWER_PASS \
587                 mac_addresses=$MAC_ADDRESS architecture=$NODE_ARC
588         done
589     fi
590
591      # Iterate to avoid "Conflict error" issue
592      for ii in 1 2 3 4 5 6 7 8 9 10
593      do
594        echo "Try $ii"
595        maas $PROFILE pods create type=virsh power_address="$VIRSHURL" power_user=$USER > /tmp/deploy.out 2>&1 || true
596        cat /tmp/deploy.out
597        if ! fgrep -q 'Conflict' /tmp/deploy.out
598        then
599          break
600        else
601          continue
602        fi
603      done
604
605
606     # Make sure nodes are added into MAAS and none of them is in commissioning state
607     i=0
608     while [ "$(maas $PROFILE nodes read | grep Commissioning )" ];
609     do
610         echo_info "Waiting for nodes to finish commissioning. ${i} minutes elapsed."
611         sleep 60
612         i=$[$i+1]
613
614         # Make sure that no nodes have failed commissioning or testing
615         if [ "$(maas $PROFILE nodes read | grep 'Failed' )" ];
616         then
617             echo "Error: Some nodes have failed commissioning or testing" 1>&2
618             exit 1
619         fi
620
621     done
622
623 }
624
625 # configure MAAS with the different options.
626 configuremaas
627 sleep 30
628
629 # functioncall with subnetid to add and second parameter is dhcp enable
630 # third parameter will define the space. It is required to have admin
631
632 setupspacenetwork
633
634 if [ "$snapinstall" -eq 0 ]; then
635     sudo sed -i 's/localhost/'$MAAS_IP'/g' /etc/maas/rackd.conf
636     sudo service maas-rackd restart
637     sudo service maas-regiond restart
638     sleep 120
639 fi
640
641 # Let's add the nodes now. Currently works only for virtual deployment.
642 addnodes
643
644 echo_info "Initial deployment of MAAS finished"
645
646 #Added the Qtip public to run the Qtip test after install on bare metal nodes.
647 #maas $PROFILE sshkeys new key="`cat ./maas/sshkeys/QtipKey.pub`"
648 #maas $PROFILE sshkeys new key="`cat ./maas/sshkeys/DominoKey.pub`"
649
650 addcredential() {
651     controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
652     cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
653
654     echo  "credentials:" > credential.yaml
655     echo  "  $controllername:" >> credential.yaml
656     echo  "    opnfv-credentials:" >> credential.yaml
657     echo  "      auth-type: oauth1" >> credential.yaml
658     echo  "      maas-oauth: $API_KEY" >> credential.yaml
659
660     juju add-credential $controllername -f credential.yaml --replace
661 }
662
663 addcloud() {
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 "clouds:" > maas-cloud.yaml
668     echo "   $cloudname:" >> maas-cloud.yaml
669     echo "      type: maas" >> maas-cloud.yaml
670     echo "      auth-types: [oauth1]" >> maas-cloud.yaml
671     echo "      endpoint: $API_SERVERMAAS" >> maas-cloud.yaml
672
673     echo_info "Adding cloud $cloudname"
674     juju add-cloud $cloudname maas-cloud.yaml --replace
675 }
676
677 #
678 # Enable MAAS nodes interfaces
679 #
680 maas login $PROFILE $API_SERVERMAAS $API_KEY
681
682 if [ -e ./labconfig.json ]; then
683     # We will configure all node, so we need the qty, and loop on it
684     NODE_QTY=$(cat labconfig.json | jq --raw-output '.lab.racks[0].nodes[]'.name | wc -l)
685     NODE_QTY=$((NODE_QTY-1))
686     for NODE_ID in $(seq 0 $NODE_QTY); do
687         # Get the NAME/SYS_ID of this node
688         NODE_NAME=$(cat labconfig.json | jq --raw-output ".lab.racks[0].nodes[$NODE_ID].name")
689         NODE_SYS_ID=$(maas $PROFILE nodes read | jq -r ".[] |  select(.hostname==\"$NODE_NAME\")".system_id)
690         echo_info ">>> Configuring node $NODE_NAME [$NODE_ID][$NODE_SYS_ID]"
691         # Recover the network interfaces list and configure each one
692         #   with sorting the list, we have hardware interface first, than the vlan interfaces
693         IF_LIST=$(cat labconfig.json | jq --raw-output ".lab.racks[0].nodes[$NODE_ID].nics[] ".ifname | sort -u )
694         for IF_NAME in $IF_LIST; do
695             # get the space of the interface
696             IF_SPACE=$(cat labconfig.json | jq --raw-output ".lab.racks[0].nodes[$NODE_ID].nics[] | select(.ifname==\"$IF_NAME\") ".spaces[])
697             SUBNET_CIDR=`cat labconfig.json | jq '.opnfv.spaces[] | select(.type=="'$IF_SPACE'")'.cidr | cut -d \" -f 2 `
698             case "$IF_SPACE" in
699                 'data')     IF_MODE='AUTO' ;;
700                 'public')   IF_MODE='AUTO' ;;
701                 'storage')  IF_MODE='AUTO' ;;
702                 'osapi')    IF_MODE='AUTO' ;;
703                 'floating') IF_MODE='link_up' ;;
704                 *) SUBNET_CIDR='null'; IF_MODE='null'; echo_info "      >>> Unknown SPACE" ;;
705             esac
706             echo_info "   >>> Configuring interface $IF_NAME [$IF_SPACE][$SUBNET_CIDR]"
707
708             # if we have a vlan parameter in the space config
709             IF_VLAN=$(cat labconfig.json | jq --raw-output ".opnfv.spaces[] | select(.type==\"$IF_SPACE\")".vlan)
710             if ([ -z $IF_VLAN ] && [ $IF_NAME =~ \. ]); then
711                 # We have no vlan specified on spaces, but we have a vlan subinterface
712                 IF_VLAN = ${IF_NAME##*.}; fi
713
714             # in case of interface renaming
715             IF_NEWNAME=$IF_NAME
716
717             # In case of a VLAN interface
718             if ([ $IF_VLAN ] && [ "$IF_VLAN" != "null" ]); then
719                 echo_info "      >>> Configuring VLAN $IF_VLAN"
720                 VLANID=$(maas $PROFILE subnets read | jq ".[].vlan | select(.vid==$IF_VLAN)".id)
721                 if ([ $VLANID ] && [ "$VLANID" != "null" ]); then
722                     FABRICID=$(maas $PROFILE subnets read | jq ".[].vlan | select(.vid==$IF_VLAN)".fabric_id)
723                     if ([ $FABRICID ] && [ "$FABRICID" != "null" ]); then
724                         INTERFACE=$(maas $PROFILE interfaces read $NODE_SYS_ID | jq ".[] | select(.vlan.fabric_id==$FABRICID)".id)
725                     fi
726                 fi
727                 if [[ -z $INTERFACE ]]; then
728                     # parent interface is not set because it does not have a SUBNET_CIDR
729                     PARENT_VLANID=$(maas $PROFILE fabrics read | jq ".[].vlans[] | select(.fabric_id==$FABRICID and .name==\"untagged\")".id)
730                     # If we need to rename the interface, use new interface name
731                     if ([ $IF_NEWNAME ] && [ "$IF_NEWNAME" != "null" ]); then
732                         PARENT_IF_NAME=${IF_NEWNAME%%.*}
733                         IF_NAME=$IF_NEWNAME
734                     else
735                         PARENT_IF_NAME=${IF_NAME%%.*}
736                     fi
737                     # We set the physical interface to the targeted fabric
738                     maas $PROFILE interface update $NODE_SYS_ID $PARENT_IF_NAME vlan=$PARENT_VLANID
739                     sleep 2
740                     INTERFACE=$(maas $PROFILE interfaces read $NODE_SYS_ID | jq ".[] | select(.vlan.fabric_id==$FABRICID)".id)
741                 fi
742                 maas $PROFILE interfaces create-vlan $NODE_SYS_ID vlan=$VLANID parent=$INTERFACE || true
743             else
744                 # rename interface if needed
745                 IF_MACLOWER=$( cat labconfig.json | jq ".lab.racks[0].nodes[$NODE_ID].nics[] | select(.ifname==\"$IF_NEWNAME\")".mac[0])
746                 IF_MAC=(${IF_MACLOWER,,})
747                 IF_ID=$( maas $PROFILE interfaces read $NODE_SYS_ID | jq ".[] | select(.mac_address==$IF_MAC)".id)
748                 if ([ $IF_ID ] && [ "$IF_ID" != "null" ]); then
749                     maas $PROFILE interface update $NODE_SYS_ID $IF_ID name=$IF_NEWNAME
750                 fi
751             fi
752             # Configure the interface
753             if ([ $SUBNET_CIDR ] && [ "$SUBNET_CIDR" != "null" ]); then
754                 VLANID=$(maas $PROFILE subnet read $SUBNET_CIDR | jq -r '.vlan.id')
755                 if !([ $IF_VLAN ] && [ "$IF_VLAN" != "null" ]); then
756                     # If this interface is not a VLAN (done withe create-vlan)
757                     maas $PROFILE interface update $NODE_SYS_ID $IF_NAME vlan=$VLANID || true
758                 fi
759                 maas $PROFILE interface link-subnet $NODE_SYS_ID $IF_NAME  mode=$IF_MODE subnet=$SUBNET_CIDR || true
760                 sleep 2
761             else
762                 echo_info "      >>> Not configuring, we have an empty Subnet CIDR"
763             fi
764
765         done
766     done
767 fi
768
769 # Add the cloud and controller credentials for MAAS for that lab.
770 addcloud
771 addcredential
772
773 #
774 # End of scripts
775 #
776 echo_info "MAAS deployment finished successfully"