diff options
author | Narinder Gupta <narinder.gupta@canoncial.com> | 2015-08-29 14:31:22 -0500 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canoncial.com> | 2015-08-29 14:36:03 -0500 |
commit | b5c5f74a35b7c2a3413bfac94811d8e6035aa3ae (patch) | |
tree | 56745cbb089883fb3c5708c654136b31bcd51fc4 /ci/odl/01-deploybundle.sh | |
parent | 62101c28c8245ebe97c548669c27cd2899cbfbab (diff) |
restructure the directory structure so that we can have directories per
SDN and then we can have same structure for new distro by adding just
the yaml file. Deleted the old file structure.
Change-Id: Ibd544c340fdb53813bc34ee8ff6931ed4b4dee6c
JIRA:JOID-1
Diffstat (limited to 'ci/odl/01-deploybundle.sh')
-rwxr-xr-x | ci/odl/01-deploybundle.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ci/odl/01-deploybundle.sh b/ci/odl/01-deploybundle.sh new file mode 100755 index 00000000..4d5da31d --- /dev/null +++ b/ci/odl/01-deploybundle.sh @@ -0,0 +1,19 @@ +#!/bin/bash +#placeholder for deployment script. +set -ex + +cp odl/juju-deployer/ovs-odl.yaml ./ + +echo "... Deployment Started ...." + +#case openstack kilo with odl +juju-deployer -d -r 13 -c ovs-odl.yaml trusty-kilo + +#case openstack kilo with odl ha +#juju-deployer -d -r 13 -c ovs-odl-ha.yaml trusty-kilo + +#case openstack master tip git tree with odl +#cp -R odl/juju-deployer/source/*.yaml ./ +#juju-deployer -d -r 13 -c ovs-odl-tip.yaml trusty-master-kilo + +echo "... Deployment finished ...." |