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