joid: clean deployment files
[joid.git] / ci / opencontrail / 01-deploybundle.sh
1 #!/bin/bash
2 #placeholder for deployment script.
3 set -ex
4
5 case "$1" in
6     'nonha' )
7         cp opencontrail/juju-deployer/contrail.yaml ./bundles.yaml
8         ;;
9     'ha' )
10         cp opencontrail/juju-deployer/contrail-ha.yaml ./bundles.yaml
11         ;;
12     'tip' )
13         cp opencontrail/juju-deployer/contrail-tip.yaml ./bundles.yaml
14         cp common/source/* ./
15         sed -i -- "s|branch: master|branch: stable/$2|g" ./*.yaml
16         ;;
17     * )
18         cp opencontrail/juju-deployer/contrail.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          ;;
31      'intelpod6' )
32         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
33          sed -i -- 's/10.4.1.1/10.4.1.2/g' ./bundles.yaml
34         # choose the correct interface to use for data network
35          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.4.9.0\/24/g' ./bundles.yaml
36         # Choose the external port to go out from gateway to use.
37          sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "eth2"/g' ./bundles.yaml
38          ;;
39      'intelpod5' )
40         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
41          sed -i -- 's/10.4.1.1/10.4.1.2/g' ./bundles.yaml
42         # choose the correct interface to use for data network
43          sed -i -- 's/#os-data-network: 10.4.8.0\/21/os-data-network: 10.4.9.0\/24/g' ./bundles.yaml
44         # Choose the external port to go out from gateway to use.
45          sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "eth2.724"/g' ./bundles.yaml
46         ;;
47      'attvirpod1' )
48         # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
49          sed -i -- 's/10.4.1.1/192.168.10.1/g' ./bundles.yaml
50         # Choose the external port to go out from gateway to use.
51          sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "eth1"/g' ./bundles.yaml
52         ;;
53      'default' )
54          sed -i -- 's/10.4.1.1/192.168.122.1/g' ./bundles.yaml
55          sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "eth1"/g' ./bundles.yaml
56         ;;
57
58 esac
59
60 echo "... Deployment Started ...."
61 case "$1" in
62     'nonha' )
63         juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes
64         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
65         ;;
66     'ha' )
67         juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes
68         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
69         ;;
70     'tip' )
71         juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes
72         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
73         ;;
74     * )
75         juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes
76         juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2"
77         ;;
78 esac
79