trying to resolv charm error by configure the cluster first then
[joid.git] / ci / 01-deploybundle.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 #    ./01-deploybundle.sh $opnfvtype $openstack $opnfvlab $opnfvsdn $opnfvfeature $opnfvdistro
6
7     #copy and download charms
8     cp $4/fetch-charms.sh ./fetch-charms.sh
9     #modify the ubuntu series wants to deploy
10     sed -i -- "s|distro=trusty|distro=$6|g" ./fetch-charms.sh
11     ./fetch-charms.sh $6
12
13 case "$1" in
14     'nonha' )
15         cp $4/juju-deployer/ovs-$4-nonha.yaml ./bundles.yaml
16         ;;
17     'ha' )
18         cp $4/juju-deployer/ovs-$4-ha.yaml ./bundles.yaml
19         ;;
20     'tip' )
21         cp $4/juju-deployer/ovs-$4-tip.yaml ./bundles.yaml
22         cp common/source/* ./
23         sed -i -- "s|branch: master|branch: stable/$2|g" ./*.yaml
24         ;;
25     * )
26         cp $4/juju-deployer/ovs-$4-nonha.yaml ./bundles.yaml
27         ;;
28 esac
29
30 #check whether charms are still executing the code even juju-deployer says installed.
31 check_status() {
32     retval=0
33     timeoutiter=0
34     while [ $retval -eq 0 ]; do
35        sleep 30
36        juju status > status.txt
37        if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
38            echo " still executing the reltionship within charms ..."
39            if [ $timeoutiter -ge 90 ]; then
40                retval=1
41            fi
42            timeoutiter=$((timeoutiter+1))
43        else
44            retval=1
45        fi
46     done
47     status=`juju action do heat/0 domain-setup`
48     echo $status
49     echo "...... deployment finishing ......."
50 }
51
52 #read the value from deployment.yaml
53 if [ -e ~/.juju/deployment.yaml ]; then
54    cp ~/.juju/deployment.yaml ./deployment.yaml
55    if [ -e ~/.juju/deployconfig.yaml ]; then
56       cp ~/.juju/deployconfig.yaml ./deployconfig.yaml
57       extport=`grep "ext-port" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
58       sed --i "s@#ext-port: \"eth1\"@ext-port: \"$extport\"@g" ./bundles.yaml
59       datanet=`grep "dataNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
60       if [ "$datanet" != "''" ]; then
61           sed -i -- "s@#os-data-network: 10.4.8.0/21@os-data-network: $datanet@g" ./bundles.yaml
62       fi
63       admnet=`grep "admNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
64       sed --i "s@10.4.1.1@$admnet@g" ./bundles.yaml
65       cephdisk=`grep "disk" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
66       sed --i "s@osd-devices: /srv@osd-devices: $cephdisk@g" ./bundles.yaml
67       osdomname=`grep "os-domain-name" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
68       if [ "$osdomname" != "''" ]; then
69           sed --i "s@#os-public-hostname: pod.maas@os-public-hostname: api.$osdomname@g" ./bundles.yaml
70           sed --i "s@#console-proxy-ip: pod.maas@console-proxy-ip: $osdomname@g" ./bundles.yaml
71       fi
72    fi
73 fi
74
75 case "$3" in
76      'juniperpod1' )
77          sed -i -- 's/10.4.1.1/172.16.50.1/g' ./bundles.yaml
78          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
79          ;;
80      'ravellodemopod' )
81          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth2"/g' ./bundles.yaml
82         ;;
83      'default' )
84          sed -i -- 's/10.4.1.1/192.168.122.1/g' ./bundles.yaml
85          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
86         ;;
87 esac
88
89 # lets put the if seperateor as "," as this will save me from world.
90 IFS=","
91
92 for feature in $5; do
93     case "$feature" in
94         'ipv6' )
95              sed -i -- 's/#prefer-ipv6: true/prefer-ipv6: true/g' ./bundles.yaml
96             ;;
97         'dvr' )
98              sed -i -- 's/#enable-dvr: true/enable-dvr: true/g' ./bundles.yaml
99              sed -i -- 's/#l2-population: true/l2-population: true/g' ./bundles.yaml
100             ;;
101         'sfc' )
102              sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-beryllium-sfc"/g' ./bundles.yaml
103             ;;
104         'vpn' )
105              sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-beryllium-vpn"/g' ./bundles.yaml
106             ;;
107         'odl_l3' )
108              sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-beryllium-l3"/g' ./bundles.yaml
109             ;;
110         'dpdk' )
111              sed -i -- 's/#enable-dpdk: true/enable-dpdk: true/g' ./bundles.yaml
112              sed -i -- 's/#hugepages: "50%"/hugepages: "50%"/g' ./bundles.yaml
113             ;;
114         'lxd' )
115              sed -i -- 's/#- - nova-compute:lxd/- - nova-compute:lxd/g' ./bundles.yaml
116              sed -i -- 's/#- lxd:lxd/- lxd:lxd/g' ./bundles.yaml
117              sed -i -- 's/#virt-type: lxd/virt-type: lxd/g' ./bundles.yaml
118              # adding the lxd subordinate charm
119              echo "    lxd:" >> ./bundles.yaml
120              echo "      charm: local:xenial/lxd" >> ./bundles.yaml
121             ;;
122     esac
123 done
124
125 #changing the target to the openstack release we want to deploy.
126 sed -i -- "s|mitaka|$2|g" ./bundles.yaml
127
128 #update source if trusty is target distribution
129 case "$6" in
130     'trusty' )
131         sed -i -- "s|#source|source|g" ./bundles.yaml
132         sed -i -- "s|#source-branch:|source-branch:|g" ./bundles.yaml
133         ;;
134     'xenial' )
135         #changing the target to the ubuntu distro we want to deploy.
136         sed -i -- "s|trusty|$6|g" ./bundles.yaml
137         ;;
138 esac
139
140 echo "... Deployment Started ...."
141     juju-deployer -vW -d -t 3600 -c bundles.yaml $6-"$2"-nodes
142     check_status
143
144     juju ssh nodes/0 "echo 512 | sudo tee /proc/sys/fs/inotify/max_user_instances"
145
146     juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml $6-"$2"