typing mistake.
[joid.git] / ci / 02-deploybundle.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 #    ./02-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro
6
7 opnfvtype=$1
8 openstack=$2
9 opnfvlab=$3
10 opnfvsdn=$4
11 opnfvfeature=$5
12 opnfvdistro=$6
13 opnfvmodel=$7
14
15 if [[ "$opnfvmodel" = "openstack" ]]; then
16     #copy and download charms
17     cp $opnfvsdn/fetch-charms.sh ./fetch-charms.sh
18 else
19     cp kubernates/fetch-charms.sh ./fetch-charms.sh
20 fi
21
22 jujuver=`juju --version`
23
24 #modify the ubuntu series wants to deploy
25 sed -i -- "s|distro=trusty|distro=$opnfvdistro|g" ./fetch-charms.sh
26
27 ./fetch-charms.sh $opnfvdistro
28
29 if [[ "$opnfvmodel" = "openstack" ]]; then
30     tar xvf common/scaleio.tar -C ./$opnfvdistro/ --strip=2 juju-scaleio/trusty/
31     osdomname=''
32 fi
33
34 #check whether charms are still executing the code even juju-deployer says installed.
35 check_status() {
36     retval=0
37     timeoutiter=0
38     while [ $retval -eq 0 ]; do
39        sleep 30
40        juju status > status.txt
41        if [ "$(grep -c "waiting" status.txt )" -ge 4 ]; then
42            echo " still waiting for machines ..."
43            if [ $timeoutiter -ge 360 ]; then
44                retval=1
45            fi
46            timeoutiter=$((timeoutiter+1))
47        else
48            retval=1
49        fi
50     done
51     echo "...... deployment finishing ......."
52 }
53
54 #read the value from deployment.yaml
55
56 if [[ "$opnfvmodel" = "openstack" ]]; then
57     if [ -e ./deployment.yaml ]; then
58        if [ -e ./deployconfig.yaml ]; then
59           extport=`grep "ext-port" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
60           datanet=`grep "dataNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
61           admnet=`grep "admNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
62           cephdisk=`grep "ceph-disk" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
63           osdomname=`grep "os-domain-name" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
64        fi
65
66         workmutiple=`maas maas nodes read | grep "cpu_count" | cut -d ':' -f 2 | sed -e 's/ //' | tr ',' ' '`
67         max=0
68         for v in ${workmutiple[@]}; do
69             if (( $v > $max )); then max=$v; fi;
70         done
71         echo $max
72
73         if [ "$max" -lt 4 ];then
74             workmutiple=1.1
75         elif [ "$max" -lt 33 ]; then
76             workmutiple=0.25
77         elif [ "$max" -lt 73 ]; then
78             workmutiple=0.1
79         else
80             workmutiple=0.05
81         fi
82         sed -i "s/worker_multiplier: 1.0/worker_multiplier: ${workmutiple}/g" default_deployment_config.yaml
83     fi
84 fi
85
86 case "$opnfvlab" in
87      'juniperpod1' )
88          sed -i -- 's/10.4.1.1/172.16.50.1/g' ./bundles.yaml
89          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
90          ;;
91      'ravellodemopod' )
92          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth2"/g' ./bundles.yaml
93         ;;
94 esac
95
96 # lets put the if seperateor as "," as this will save me from world.
97 fea=""
98 IFS=","
99 for feature in $opnfvfeature; do
100     if [ "$fea" == "" ]; then
101         fea=$feature
102     else
103         fea=$fea"_"$feature
104     fi
105 done
106
107 if [[ "$opnfvmodel" = "openstack" ]]; then
108     #update source if trusty is target distribution
109     var=os-$opnfvsdn-$fea-$opnfvtype"-"$opnfvdistro"_"$openstack
110
111     if [ "$osdomname" != "None" ]; then
112         var=$var"_"publicapi
113     fi
114 else
115     var=k8-$opnfvsdn-$fea-baremetal-core
116 fi
117
118 if [[ "$opnfvmodel" = "openstack" ]]; then
119     #lets generate the bundle for all target using genBundle.py
120     python genBundle.py  -l deployconfig.yaml  -s $var > bundles.yaml
121 else
122     #lets generate the bundle for k8 target using genK8Bundle.py
123     python genK8Bundle.py  -l deployconfig.yaml  -s $var > bundles.yaml
124 fi
125
126 #keep the back in cloud for later debugging.
127 pastebinit bundles.yaml || true
128
129 if [[ "$jujuver" < "2" ]]; then
130     echo "... Deployment Started ...."
131     juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml $opnfvdistro-"$openstack"-nodes
132     count=`juju status nodes --format=short | grep nodes | wc -l`
133     c=0
134     while [ $c -lt $count ]; do
135         juju ssh nodes/$c 'echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p' || true
136         juju ssh nodes-compute/$c 'echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p' || true
137         juju ssh nodes/$c 'echo 2048 | sudo tee /proc/sys/fs/inotify/max_user_instances' || true
138         juju ssh nodes-compute/$c 'echo 2048 | sudo tee /proc/sys/fs/inotify/max_user_instances' || true
139         let c+=1
140     done
141
142     juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml $opnfvdistro-"$openstack" || true
143 else
144     # with JUJU 2.0 bundles has to be deployed only once.
145     juju deploy bundles.yaml --debug
146     sleep 120
147     check_status
148     # seeing issue related to number of open files.
149     count=`juju status nodes --format=short | grep nodes | wc -l`
150     c=0
151     while [ $c -lt $count ]; do
152         juju ssh nodes/$c 'echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p' || true
153         juju ssh nodes-compute/$c 'echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p' || true
154         juju ssh nodes/$c 'echo 2048 | sudo tee /proc/sys/fs/inotify/max_user_instances' || true
155         juju ssh nodes-compute/$c 'echo 2048 | sudo tee /proc/sys/fs/inotify/max_user_instances' || true
156         let c+=1
157     done
158 fi
159
160 #lets gather the status of deployment once juju-deployer completed.
161 juju status --format=tabular