2792759febe91b977ab464ae2cf5629ff8808ed8
[joid.git] / ci / deploy.sh
1 #!/bin/bash
2
3 set -ex
4
5 source 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     for node in node3-control node4-control
140     do
141         node_id=$(maas $PROFILE machines read | \
142                   jq -r ".[] | select(.hostname == \"$node\").system_id")
143         if [[ -z "$node_id" ]]; then
144             sudo virt-install --connect qemu:///system --name $node \
145                 --ram 8192 --cpu host --vcpus 4 \
146                 --disk size=120,format=qcow2,bus=virtio,cache=directsync,io=native,pool=default \
147                 --network bridge=virbr0,model=virtio \
148                 --network bridge=virbr0,model=virtio \
149                 --boot network,hd,menu=off \
150                 --noautoconsole --vnc --print-xml | tee _node.xml
151             node_mac=$(grep "mac address" _node.xml | head -1 | cut -d "'" -f 2)
152             sudo virsh -c qemu:///system define --file _node.xml
153             rm -f _node.xml
154
155             maas $PROFILE nodes new autodetect_nodegroup='yes' name=$node \
156                 tags='control' hostname=$name power_type='virsh' \
157                 mac_addresses=$node3controlmac \
158                 power_parameters_power_address="qemu+ssh://$USER@192.168.122.1/system" \
159                 architecture='amd64/generic' power_parameters_power_id='node3-control'
160             node_id=$(maas $PROFILE machines read | \
161                   jq -r ".[] | select(.hostname == \"$node\").system_id")
162         fi
163         if [[ -z "$node_id" ]]; then
164             echo_error "Error: failed to create node $node ."
165             exit 1
166         fi
167         maas $PROFILE tag update-nodes control add=$node_id || true
168     done
169 }
170
171 #copy the files and create extra resources needed for HA deployment
172 # in case of default VM labs.
173 deploy() {
174     if [ ! -f ./labconfig.yaml ] && [ -e ~/joid_config/labconfig.yaml ]; then
175         cp ~/joid_config/labconfig.yaml ./labconfig.yaml
176
177         if [ ! -f ./deployconfig.yaml ] && [ -e ~/joid_config/deployconfig.yaml ]; then
178             cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
179         else
180             python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
181         fi
182     else
183         if [ -e ./labconfig.yaml ]; then
184             if [ ! -f ./deployconfig.yaml ] && [ -e ~/joid_config/deployconfig.yaml ]; then
185                 cp ~/joid_config/deployconfig.yaml ./deployconfig.yaml
186             else
187                 python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml
188             fi
189         else
190             echo_error "MAAS not deployed please deploy MAAS first."
191         fi
192     fi
193
194     #create json file which is missing in case of new deployment after maas and git tree cloned freshly.
195     python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < labconfig.yaml > labconfig.json
196     python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < deployconfig.yaml > deployconfig.json
197
198     # Install MAAS and expecting the labconfig.yaml at local directory.
199
200     if [ "$maasinstall" -eq 1 ]; then
201         ./clean.sh || true
202         PROFILE=${PROFILE:-ubuntu}
203         MAAS_IP=$(grep " ip_address" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //')
204         API_SERVER="http://$MAAS_IP:5240/MAAS/api/2.0"
205         API_KEY=`sudo maas-region apikey --username=ubuntu`
206         maas login $PROFILE $API_SERVER $API_KEY
207
208         # make sure there is no machine entry in maas
209         for m in $(maas $PROFILE machines read | jq -r '.[].system_id')
210         do
211             maas $PROFILE machine delete $m || true
212         done
213         podno=$(maas $PROFILE pods read | jq -r ".[]".id)
214         maas $PROFILE pod delete $podno || true
215
216         ./cleanvm.sh || true
217
218         if [ "$virtinstall" -eq 1 ]; then
219             ./00-maasdeploy.sh virtual
220         else
221             if [ -z "$labfile" ]; then
222                 if [ ! -e ./labconfig.yaml ]; then
223                     echo_error "Labconfig file must be specified when using custom"
224                 else
225                     echo_warning "Labconfig was not specified, using ./labconfig.yaml instead"
226                 fi
227             elif [ ! -e "$labfile" ]; then
228                 echo_warning "Labconfig not found locally, trying download"
229                 wget $labfile -t 3 -T 10 -O ./labconfig.yaml || true
230                 count=`wc -l labconfig.yaml  | cut -d " " -f 1`
231                 if [ $count -lt 10 ]; then
232                     echo_error "Unable to download labconfig"
233                     exit 1
234                 fi
235             else
236                 echo_info "Using $labfile to setup deployment"
237                 cp $labfile ./labconfig.yaml
238             fi
239
240             ./00-maasdeploy.sh custom
241         fi
242     fi
243
244     if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then
245         createresource
246     fi
247
248     #bootstrap the node
249     ./01-bootstrap.sh
250
251     juju model-config default-series=$opnfvdistro enable-os-refresh-update=false enable-os-upgrade=false
252
253     # case default deploy the opnfv platform:
254     ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro $opnfvmodel
255 }
256
257 #check whether charms are still executing the code even juju-deployer says installed.
258 check_status() {
259     waitstatus=$1
260     retval=0
261     timeoutiter=0
262
263     echo_info "Executing the relationships within charms..."
264     while [ $retval -eq 0 ]; do
265         if juju status | grep -q $waitstatus; then
266            echo_info "Still waiting for $waitstatus units"
267            if [ $timeoutiter -ge 180 ]; then
268                echo_error 'Timed out'
269                retval=1
270            else
271                sleep 30
272            fi
273            timeoutiter=$((timeoutiter+1))
274        else
275            echo_info 'Done executing the relationships'
276            retval=1
277        fi
278     done
279
280     if [[ "$opnfvmodel" = "openstack" ]]; then
281         juju expose ceph-radosgw || true
282         #juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
283     fi
284
285     echo_info "Deployment finishing..."
286  }
287
288
289 # In the case of a virtual deployment
290 if [ "$virtinstall" -eq 1 ]; then
291     ./clean.sh || true
292 fi
293
294 echo_info "Deployment started"
295 deploy
296
297 check_status executing
298
299 echo_info "Deployment finished"
300
301 echo_info "Configuring public access"
302
303 # translate bundle.yaml to json
304 python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < bundles.yaml > bundles.json
305
306 public_service() {
307     # get services list having a public interface
308     srv_list=$(cat bundles.json | jq -r ".services | to_entries[] | {\"key\": .key, \"value\": .value[\"bindings\"]} | select (.value!=null) | select(.value[] | contains(\"public-api\"))".key)
309     # get cnt list from service list
310     cnt_list=$(for cnt in $srv_list; do juju status $cnt --format=json | jq -r ".machines[].containers | to_entries[]".key; done)
311     # get public network gateway (supposing it is the first ip of the network)
312     public_api_gw=$(cat labconfig.json | jq --raw-output ".opnfv.spaces[] | select(.type==\"public\")".gateway)
313     admin_gw=$(cat labconfig.json | jq --raw-output ".opnfv.spaces[] | select(.type==\"admin\")".gateway)
314
315     if ([ $admin_gw ] && [ $admin_gw != "null" ]); then
316         # set default gateway to public api gateway
317         for cnt in $cnt_list; do
318             echo_info "Changing default gateway on $cnt"
319             if ([ $public_api_gw ] && [ $public_api_gw != "null" ]); then
320                 juju ssh $cnt "sudo ip r d default && sudo ip r a default via $public_api_gw";
321                 juju ssh $cnt "gw_dev=\$(ip  r l | grep 'via $public_api_gw' | cut -d \  -f5) &&\
322                    sudo cp /etc/network/interfaces /etc/network/interfaces.bak &&\
323                    echo 'removing old default gateway' &&\
324                    sudo perl -i -pe 's/^\ *gateway $admin_gw\n$//' /etc/network/interfaces &&\
325                    sudo perl -i -pe \"s/iface \$gw_dev inet static/iface \$gw_dev inet static\\n  gateway $public_api_gw/\" /etc/network/interfaces \
326                    ";
327             fi
328         done
329     fi
330 }
331
332 # Configuring deployment
333 if ([ $opnfvmodel == "openstack" ]); then
334     echo_info "Configuring OpenStack deployment"
335
336     ./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true
337
338     # creating heat domain after pushing the public API into /etc/hosts
339     if [[ "$jujuver" > "2" ]]; then
340         status=`juju run-action heat/0 domain-setup`
341         echo $status
342     else
343         status=`juju action do heat/0 domain-setup`
344         echo $status
345     fi
346
347     sudo ../juju/get-cloud-images || true
348     ../juju/joid-configure-openstack || true
349
350     if grep -q 'openbaton' bundles.yaml; then
351         juju add-relation openbaton keystone
352     fi
353
354 elif ([ $opnfvmodel == "kubernetes" ]); then
355     echo_info "Configuring Kubernetes deployment"
356
357     ./k8.sh
358 fi
359
360 # expose the juju gui-url to login into juju gui
361
362 echo_info "Juju GUI can be accessed using the following URL and credentials:"
363 juju gui --show-credentials --no-browser
364
365 echo "Finished deployment and configuration"