Merge "added a new pod cengn pod1"
[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
31 #read the value from deployment.yaml
32 if [ -e ~/.juju/deployment.yaml ]; then
33    cp ~/.juju/deployment.yaml ./deployment.yaml
34    if [ -e ~/.juju/deployconfig.yaml ]; then
35       cp ~/.juju/deployconfig.yaml ./deployconfig.yaml
36       extport=`grep "ext-port" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //' | tr ',' ' '`
37       sed --i "s@#ext-port: \"eth1\"@ext-port: \"$extport\"@g" ./bundles.yaml
38       datanet=`grep "dataNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
39       if [ "$datanet" != "''" ]; then
40           sed -i -- "s@#os-data-network: 10.4.8.0/21@os-data-network: $datanet@g" ./bundles.yaml
41       fi
42       admnet=`grep "admNetwork" deployconfig.yaml | cut -d ' ' -f 4 | sed -e 's/ //'`
43       sed --i "s@10.4.1.1@$admnet@g" ./bundles.yaml
44       cephdisk=`grep "disk" deployconfig.yaml | cut -d ':' -f 2 | sed -e 's/ //'`
45       sed --i "s@osd-devices: /srv@osd-devices: $cephdisk@g" ./bundles.yaml
46    fi
47 fi
48
49 case "$3" in
50      'cengnlynxpod1' )
51         # Chose the hard drive(s) to use for CEPH OSD
52          sed -i -- 's|osd-devices: /srv|osd-devices: /dev/sdb|g' ./bundles.yaml
53         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
54          sed -i -- 's/10.4.1.1/10.120.0.1/g' ./bundles.yaml
55         # choose the correct interface to use for data network
56          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 172.16.121.0\/24/g' ./bundles.yaml
57         # Choose the external port to go out from gateway to use.
58          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1.1202"/g' ./bundles.yaml
59         ;;
60      'juniperpod1' )
61          sed -i -- 's/10.4.1.1/172.16.50.1/g' ./bundles.yaml
62          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
63          ;;
64      'ravellodemopod' )
65          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth2"/g' ./bundles.yaml
66         ;;
67      'default' )
68          sed -i -- 's/10.4.1.1/192.168.122.1/g' ./bundles.yaml
69          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
70         ;;
71 esac
72
73 # lets put the if seperateor as "," as this will save me from world.
74 IFS=","
75
76 for feature in $5; do
77     case "$feature" in
78         'ipv6' )
79              sed -i -- 's/#prefer-ipv6: true/prefer-ipv6: true/g' ./bundles.yaml
80             ;;
81         'dvr' )
82              sed -i -- 's/#enable-dvr: true/enable-dvr: true/g' ./bundles.yaml
83              sed -i -- 's/#l2-population: true/l2-population: true/g' ./bundles.yaml
84             ;;
85         'sfc' )
86              sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-beryllium-sfc"/g' ./bundles.yaml
87             ;;
88         'vpn' )
89              sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-beryllium-vpn"/g' ./bundles.yaml
90             ;;
91         'odl_l3' )
92              sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-beryllium-l3"/g' ./bundles.yaml
93             ;;
94         'dpdk' )
95              sed -i -- 's/#enable-dpdk: true/enable-dpdk: true/g' ./bundles.yaml
96              sed -i -- 's/#hugepages: "50%"/hugepages: "50%"/g' ./bundles.yaml
97             ;;
98         'lxd' )
99              sed -i -- 's/#- - nova-compute:lxd/- - nova-compute:lxd/g' ./bundles.yaml
100              sed -i -- 's/#- lxd:lxd/- lxd:lxd/g' ./bundles.yaml
101              sed -i -- 's/#virt-type: lxd/virt-type: lxd/g' ./bundles.yaml
102              # adding the lxd subordinate charm
103              echo "    lxd:" >> ./bundles.yaml
104              echo "      charm: local:xenial/lxd" >> ./bundles.yaml
105             ;;
106     esac
107 done
108
109 #changing the target to the openstack release we want to deploy.
110 sed -i -- "s|mitaka|$2|g" ./bundles.yaml
111
112 #update source if trusty is target distribution
113 case "$6" in
114     'trusty' )
115         sed -i -- "s|#source|source|g" ./bundles.yaml
116         ;;
117     'xenial' )
118         #changing the target to the ubuntu distro we want to deploy.
119         sed -i -- "s|trusty|$6|g" ./bundles.yaml
120         ;;
121 esac
122
123 echo "... Deployment Started ...."
124     juju-deployer -vW -d -t 3600 -c bundles.yaml $6-"$2"-nodes
125     juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml $6-"$2"