From 8dc78e50d69a171154b619944c90bca7abe6dc85 Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Tue, 1 Sep 2015 13:19:55 -0500 Subject: Added execute permission on clean.sh and deploy.sh Added the command line parameters in deply.sh for having various options in the deploy script. Options are -s "sdn type" -t "deploy type" -o "openstack" -l "lab" Based on options aboe we can deploy any combination using the same script. Change-Id: Ia888e97fc9630e9416ebf59747de7ffd79f416ae --- ci/01-deploybundle.sh | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) (limited to 'ci/01-deploybundle.sh') diff --git a/ci/01-deploybundle.sh b/ci/01-deploybundle.sh index f88cf861..5f64119f 100755 --- a/ci/01-deploybundle.sh +++ b/ci/01-deploybundle.sh @@ -1,14 +1,26 @@ #!/bin/bash +#!/bin/bash #placeholder for deployment script. set -ex -cp odl/juju-deployer/ovs-odl.yaml ./ +case "$1" in + 'nonha' ) + cp opencontrail/juju-deployer/contrail.yaml ./bundles.yaml + ;; + 'ha' ) + cp opencontrail/juju-deployer/contrail-ha.yaml ./bundles.yaml + ;; + 'tip' ) + cp opencontrail/juju-deployer/contrail-tip.yaml ./bundles.yaml + ;; + * ) + cp opencontrail/juju-deployer/contrail.yaml ./bundles.yaml + ;; +esac echo "... Deployment Started ...." -JUJU_REPOSITORY= -juju set-constraints tags= - -juju-deployer -d -r 13 -c ovs-odl.yaml trusty-kilo +echo juju-deployer -d -r 13 -c bundles.yaml trusty-"$2"-contrail echo "... Deployment finished ...." + -- cgit 1.2.3-korg