commenting out the haproxy config currently.
[joid.git] / ci / 01-deploybundle.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 case "$1" in
6     'nonha' )
7         cp $4/juju-deployer/ovs-$4-nonha.yaml ./bundles.yaml
8         ;;
9     'ha' )
10         cp $4/juju-deployer/ovs-$4-ha.yaml ./bundles.yaml
11         ;;
12     'tip' )
13         cp $4/juju-deployer/ovs-$4-tip.yaml ./bundles.yaml
14         cp common/source/* ./
15         sed -i -- "s|branch: master|branch: stable/$2|g" ./*.yaml
16         ;;
17     * )
18         cp $4/juju-deployer/ovs-$4-nonha.yaml ./bundles.yaml
19         ;;
20 esac
21
22 case "$3" in
23     'orangepod2' )
24         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
25          sed -i -- 's/10.4.1.1/192.168.2.2/g' ./bundles.yaml
26         # choose the correct interface to use for data network
27          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 192.168.12.0\/24/g' ./bundles.yaml
28         # Choose the external port to go out from gateway to use.
29          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
30         # Use host for public API for Orange pod2
31         # sed -i -- 's/#os-public-hostname: api.public-fqdn/os-public-hostname: api.pod2.opnfv.fr/g' ./bundles.yaml
32          ;;
33      'intelpod6' )
34         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
35          sed -i -- 's/10.4.1.1/10.6.1.2/g' ./bundles.yaml
36         # choose the correct interface to use for data network
37          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.6.12.0\/24/g' ./bundles.yaml
38         # Choose the external port to go out from gateway to use.
39          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth5"/g' ./bundles.yaml
40         # Provide the gateway MAC to route the traffic externally.
41          sed -i -- 's/#gateway-mac: "default"/gateway-mac: "default"/g' ./bundles.yaml
42          ;;
43      'intelpod5' )
44         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
45          sed -i -- 's/10.4.1.1/10.5.1.2/g' ./bundles.yaml
46         # choose the correct interface to use for data network
47          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.5.12.0\/24/g' ./bundles.yaml
48         # Choose the external port to go out from gateway to use.
49          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth5"/g' ./bundles.yaml
50         # Provide the gateway MAC to route the traffic externally.
51          sed -i -- 's/#gateway-mac: "default"/gateway-mac: "default"/g' ./bundles.yaml
52         ;;
53      'attvirpod1' )
54         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
55          sed -i -- 's/10.4.1.1/192.168.10.1/g' ./bundles.yaml
56         # Choose the external port to go out from gateway to use.
57          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
58         ;;
59      'cengnlynxpod1' )
60         # Chose the hard drive(s) to use for CEPH OSD
61          sed -i -- 's|osd-devices: /srv|osd-devices: /dev/sdb|g' ./bundles.yaml
62         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
63          sed -i -- 's/10.4.1.1/10.120.0.1/g' ./bundles.yaml
64         # choose the correct interface to use for data network
65          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 172.16.121.0\/24/g' ./bundles.yaml
66         # Choose the external port to go out from gateway to use.
67          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1.1202"/g' ./bundles.yaml
68         ;;
69      'juniperpod1' )
70          sed -i -- 's/10.4.1.1/172.16.50.1/g' ./bundles.yaml
71          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
72          ;;
73      'ravellodemopod' )
74          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth2"/g' ./bundles.yaml
75         ;;
76      'custom' )
77          sed -i -- 's/10.4.1.1/192.168.122.1/g' ./bundles.yaml
78          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
79         ;;
80      'default' )
81          sed -i -- 's/10.4.1.1/192.168.122.1/g' ./bundles.yaml
82          sed -i -- 's/#ext-port: "eth1"/ext-port: "eth1"/g' ./bundles.yaml
83         ;;
84 esac
85
86 case "$5" in
87     'ipv6' )
88          sed -i -- 's/#prefer-ipv6: true/prefer-ipv6: true/g' ./bundles.yaml
89         ;;
90     'dvr' )
91          sed -i -- 's/#enable-dvr: true/enable-dvr: true/g' ./bundles.yaml
92          sed -i -- 's/#l2-population: true/l2-population: true/g' ./bundles.yaml
93         ;;
94     'sfc' )
95          sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-Be-sfc"/g' ./bundles.yaml
96         ;;
97     'vpn' )
98          sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-Be-vpn"/g' ./bundles.yaml
99         ;;
100     'odl_l3' )
101          sed -i -- 's/profile: "openvswitch-odl-Be"/profile: "openvswitch-odl-Be-l3"/g' ./bundles.yaml
102         ;;
103 esac
104
105 echo "... Deployment Started ...."
106 case "$1" in
107     'nonha' )
108         juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2"-nodes
109         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
110         ;;
111     'ha' )
112         juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2"-nodes
113         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
114         ;;
115     'tip' )
116         juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2"-nodes
117         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
118         ;;
119     * )
120         juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2"-nodes
121         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
122         ;;
123 esac
124
125 #case "$4" in
126 #    'onos' )
127 #         echo "... onos prepare test ..."
128 #         sleep 180s
129 #         sh onos/juju_test_prepare.sh "$3"
130 #        ;;
131 #esac