~narindergupta/opnfv/stable-R2

« back to all changes in this revision

Viewing changes to ci/odl/01-deploybundle.sh

  • Committer: Narinder Gupta
  • Date: 2015-12-05 01:38:59 UTC
  • Revision ID: git-v1:6c7fc201c56648de9622dffc48a3f47e81de9465
modified to comment the use of juju-br0 as external network.
Added option to install neutron-openswitch without ODL.
consolidated source files to common as all sdn share the s
same source for openstack and it can be modified during deployment.

Change-Id: I1df7f5cd5d928d170bc6be6b32c3404dbcb5fda3

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        ;;
12
12
    'tip' )
13
13
        cp odl/juju-deployer/ovs-odl-tip.yaml ./bundles.yaml
14
 
        cp odl/juju-deployer/source/* ./
 
14
        cp common/source/* ./
15
15
        sed -i -- "s|branch: master|branch: stable/$2|g" ./*.yaml
16
16
        ;;
17
17
    * )
62
62
         cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-controller/lxc/add-more-interfaces
63
63
         cp maas/att/virpod1/lxc-add-more-interfaces trusty/ubuntu-nodes-compute/lxc/add-more-interfaces
64
64
        # As per your lab vip address list be deafult uses 10.4.1.11 - 10.4.1.20
65
 
         sed -i -- 's/10.4.1.1/192.168.1.1/g' ./bundles.yaml
 
65
         sed -i -- 's/10.4.1.1/192.168.10.1/g' ./bundles.yaml
66
66
        # Choose the external port to go out from gateway to use.
67
 
         sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "juju-br0"/g' ./bundles.yaml
 
67
         sed -i -- 's/#        "ext-port": "eth1"/        "ext-port": "eth1"/g' ./bundles.yaml
68
68
        ;;
69
69
esac
70
70
 
88
88
        ;;
89
89
esac
90
90
 
91
 
echo "... Deployment finished ...."