modified to autostart the VMs created for bootstrap and virtual
[joid.git] / ci / deploy.sh
1 #!/bin/bash
2
3 set -ex
4
5 source common/tools.sh
6
7 #need to put multiple cases here where decide this bundle to deploy by default use the odl bundle.
8 # Below parameters are the default and we can according the release
9
10 opnfvsdn=nosdn
11 opnfvtype=noha
12 openstack=ocata
13 opnfvlab=default
14 opnfvlabfile=
15 opnfvrel=e
16 opnfvfeature=none
17 opnfvdistro=xenial
18 opnfvarch=amd64
19 opnfvmodel=openstack
20 virtinstall=0
21 maasinstall=0
22
23 jujuver=`juju --version`
24
25 usage() { echo "Usage: $0
26     [-s|--sdn <nosdn|odl|opencontrail>]
27     [-t|--type <noha|ha|tip>]
28     [-o|--openstack <ocata>]
29     [-l|--lab <default|custom>]
30     [-f|--feature <ipv6,dpdk,lxd,dvr,openbaton>]
31     [-d|--distro <xenial>]
32     [-a|--arch <amd64|ppc64el|aarch64>]
33     [-m|--model <openstack|kubernetes>]
34     [-i|--virtinstall <0|1>]
35     [--maasinstall <0|1>]
36     [--labfile <labvonfig.yaml file>]
37     [-r|--release <e>]" 1>&2 exit 1;
38 }
39
40 #A string with command options
41 options=$@
42
43 # An array with all the arguments
44 arguments=($options)
45
46 # Loop index
47 index=0
48
49 for argument in $options
50     do
51         # Incrementing index
52         index=`expr $index + 1`
53
54         # The conditions
55         case $argument in
56             -h|--help )
57                 usage;
58                 ;;
59             -s|--sdn  )
60                 if ([ "arguments[index]" != "" ]); then
61                     opnfvsdn=${arguments[index]}
62                 fi;
63                 ;;
64             -t|--type )
65                 if ([ "arguments[index]" != "" ]); then
66                     opnfvtype=${arguments[index]}
67                 fi;
68                 ;;
69             -o|--openstack )
70                 if ([ "arguments[index]" != "" ]); then
71                     openstack=${arguments[index]}
72                 fi;
73                 ;;
74
75             -l|--lab  )
76                 if ([ "arguments[index]" != "" ]); then
77                     opnfvlab=${arguments[index]}
78                 fi;
79                 ;;
80
81             -r|--release )
82                 if ([ "arguments[index]" != "" ]); then
83                     opnfvrel=${arguments[index]}
84                 fi;
85                 ;;
86
87             -f|--feature )
88                 if ([ "arguments[index]" != "" ]); then
89                     opnfvfeature=${arguments[index]}
90                 fi;
91                 ;;
92
93             -d|--distro )
94                 if ([ "arguments[index]" != "" ]); then
95                     opnfdistro=${arguments[index]}
96                 fi;
97                 ;;
98
99             -a|--arch  )
100                 if ([ "arguments[index]" != "" ]); then
101                     opnfvarch=${arguments[index]}
102                 fi;
103                 ;;
104
105             -m|--model )
106                 if ([ "arguments[index]" != "" ]); then
107                     opnfvmodel=${arguments[index]}
108                 fi;
109                 ;;
110
111             -i|--virtinstall )
112                 if ([ "arguments[index]" != "" ]); then
113                     virtinstall=${arguments[index]}
114                 fi;
115                 ;;
116             --maasinstall )
117                 if ([ "arguments[index]" != "" ]); then
118                     maasinstall=${arguments[index]}
119                 fi;
120                 ;;
121             --labfile )
122                 if ([ "arguments[index]" != "" ]); then
123                     labfile=${arguments[index]}
124                 fi;
125                 ;;
126           esac
127     done
128
129
130 #by default maas creates two VMs in case of three more VM needed.
131 createresource() {
132     # TODO: make sure this function run with the same parameters used in 03-maasdeploy.sh
133     PROFILE=${PROFILE:-ubuntu}
134     MAAS_IP=$(grep " ip_address" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //')
135     API_SERVER="http://$MAAS_IP:5240/MAAS/api/2.0"
136     API_KEY=`sudo maas-region apikey --username=ubuntu`
137     maas login $PROFILE $API_SERVER $API_KEY
138
139    # if we have a virshurl configuration we use it, else we use local
140     VIRSHURL=$(cat labconfig.json | jq -r '.opnfv.virshurl')
141     if ([ $VIRSHURL == "" ] || [ "$VIRSHURL" == "null" ]); then
142         VIRSHIP=$MAAS_IP
143         VIRSHURL="qemu+ssh://$USER@$VIRSHIP/system "
144         VIRSHHOST=""
145     else
146         VIRSHHOST=$(echo $VIRSHURL| cut -d\/ -f 3 | cut -d@ -f2)
147         VIRSHIP=""  # TODO: parse from $VIRSHURL if needed
148     fi
149
150     for node in node3-control node4-control
151     do
152         node_id=$(maas $PROFILE machines read | \
153                   jq -r ".[] | select(.hostname == \"$node\").system_id")
154         if [[ -z "$node_id" ]]; then
155             sudo virt-install --connect qemu:///system --name $node \
156                 --ram 8192 --cpu host --vcpus 4 \
157                 --disk size=120,format=qcow2,bus=virtio,cache=directsync,io=native,pool=default \
158                 --network bridge=virbr0,model=virtio \
159                 --network bridge=virbr0,model=virtio \
160                 --boot network,hd,menu=off \
161                 --noautoconsole --vnc --print-xml | tee _node.xml
162             node_mac=$(grep "mac address" _node.xml | head -1 | cut -d "'" -f 2)
163             sudo virsh -c $VIRSHURL define --file _node.xml
164             rm -f _node.xml
165
166             maas $PROFILE nodes new autodetect_nodegroup='yes' name=$node \
167                 tags='control' hostname=$name power_type='virsh' \
168                 mac_addresses=$node3controlmac \
169                 power_parameters_power_address="qemu+ssh://$USER@192.168.122.1/system" \
170                 architecture='amd64/generic' power_parameters_power_id='node3-control'
171             sudo virsh -c $VIRSHURL autostart $node
172             node_id=$(maas $PROFILE machines read | \
173                   jq -r ".[] | select(.hostname == \"$node\").system_id")
174         fi
175         if [[ -z "$node_id" ]]; then
176             echo_error "Error: failed to create node $node ."
177             exit 1
178         fi
179         maas $PROFILE tag update-nodes control add=$node_id || true
180     done
181 }
182
183 #copy the files and create extra resources needed for HA deployment
184 # in case of default VM labs.
185 deploy() {
186     if [ ! -f ./labconfig.yaml ] && [ -e ~/joid_config/labconfig.yaml ]; then
187         cp ~/joid_config/labconfig.yaml ./labconfig.yaml
188
189         if [ ! -f ./deployconfig.yaml ] && [ -e ~/joid_config/deployconfig.yaml ]; then
190             cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
191         else
192             python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
193         fi
194     else
195         if [ -e ./labconfig.yaml ]; then
196             if [ ! -f ./deployconfig.yaml ] && [ -e ~/joid_config/deployconfig.yaml ]; then
197                 cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
198             else
199                 python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
200             fi
201         else
202             echo_error "MAAS not deployed please deploy MAAS first."
203         fi
204     fi
205
206     #create json file which is missing in case of new deployment after maas and git tree cloned freshly.
207     python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < labconfig.yaml > labconfig.json
208     python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < deployconfig.yaml > deployconfig.json
209
210     # Install MAAS and expecting the labconfig.yaml at local directory.
211
212     if [ "$maasinstall" -eq 1 ]; then
213         ./clean.sh || true
214         PROFILE=${PROFILE:-ubuntu}
215         MAAS_IP=$(grep " ip_address" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //')
216         API_SERVER="http://$MAAS_IP:5240/MAAS/api/2.0"
217         if which maas > /dev/null; then
218             API_KEY=`sudo maas-region apikey --username=ubuntu`
219             maas login $PROFILE $API_SERVER $API_KEY
220
221             # make sure there is no machine entry in maas
222             for m in $(maas $PROFILE machines read | jq -r '.[].system_id')
223             do
224                 maas $PROFILE machine delete $m || true
225             done
226             podno=$(maas $PROFILE pods read | jq -r ".[]".id)
227             maas $PROFILE pod delete $podno || true
228         fi
229         ./cleanvm.sh || true
230
231         if [ "$virtinstall" -eq 1 ]; then
232             ./00-maasdeploy.sh virtual
233         else
234             if [ -z "$labfile" ]; then
235                 if [ ! -e ./labconfig.yaml ]; then
236                     echo_error "Labconfig file must be specified when using custom"
237                 else
238                     echo_warning "Labconfig was not specified, using ./labconfig.yaml instead"
239                 fi
240             elif [ ! -e "$labfile" ]; then
241                 echo_warning "Labconfig not found locally, trying download"
242                 wget $labfile -t 3 -T 10 -O ./labconfig.yaml || true
243                 count=`wc -l labconfig.yaml  | cut -d " " -f 1`
244                 if [ $count -lt 10 ]; then
245                     echo_error "Unable to download labconfig"
246                     exit 1
247                 fi
248             else
249                 echo_info "Using $labfile to setup deployment"
250                 cp $labfile ./labconfig.yaml
251             fi
252
253             ./00-maasdeploy.sh custom
254         fi
255     fi
256
257     if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then
258         createresource
259     fi
260
261     #bootstrap the node
262     ./01-bootstrap.sh
263
264     juju model-config default-series=$opnfvdistro enable-os-refresh-update=false enable-os-upgrade=false
265
266     # case default deploy the opnfv platform:
267     ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro $opnfvmodel
268 }
269
270 #check whether charms are still executing the code even juju-deployer says installed.
271 check_status() {
272     waitstatus=$1
273     retval=0
274     timeoutiter=0
275
276     echo_info "Executing the relationships within charms..."
277     while [ $retval -eq 0 ]; do
278         if juju status | grep -q $waitstatus; then
279            echo_info "Still waiting for $waitstatus units"
280            if [ $timeoutiter -ge 180 ]; then
281                echo_error 'Timed out'
282                retval=1
283            else
284                sleep 30
285            fi
286            timeoutiter=$((timeoutiter+1))
287        else
288            echo_info 'Done executing the relationships'
289            retval=1
290        fi
291     done
292
293     if [[ "$opnfvmodel" = "openstack" ]]; then
294         juju expose ceph-radosgw || true
295         #juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
296     fi
297
298     echo_info "Deployment finishing..."
299  }
300
301
302 # In the case of a virtual deployment
303 if [ "$virtinstall" -eq 1 ]; then
304     ./clean.sh || true
305 fi
306
307 echo_info "Deployment started"
308 deploy
309
310 check_status executing
311
312 echo_info "Deployment finished"
313 juju status --format=tabular
314
315 # translate bundle.yaml to json
316 python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < bundles.yaml > bundles.json
317
318 # Configuring deployment
319 if ([ $opnfvmodel == "openstack" ]); then
320     echo_info "Configuring OpenStack deployment"
321
322     ./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
323
324     # creating heat domain after pushing the public API into /etc/hosts
325     if [[ "$jujuver" > "2" ]]; then
326         status=`juju run-action heat/0 domain-setup`
327         echo $status
328     else
329         status=`juju action do heat/0 domain-setup`
330         echo $status
331     fi
332
333     sudo ../juju/get-cloud-images || true
334     ../juju/joid-configure-openstack || true
335
336     if grep -q 'openbaton' bundles.yaml; then
337         juju add-relation openbaton keystone
338     fi
339
340 elif ([ $opnfvmodel == "kubernetes" ]); then
341    #Workarounf for master chanrm as it takes 5 minutes to run properly
342     check_status waiting
343     check_status executing
344     echo_info "Configuring Kubernetes deployment"
345
346     ./k8.sh
347 fi
348
349 # expose the juju gui-url to login into juju gui
350
351 echo_info "Juju GUI can be accessed using the following URL and credentials:"
352 juju gui --show-credentials --no-browser
353
354 echo "Finished deployment and configuration"