diff options
author | Di Xu <di.xu@arm.com> | 2017-07-17 16:52:31 +0800 |
---|---|---|
committer | Di Xu <di.xu@arm.com> | 2017-08-10 10:42:12 +0800 |
commit | 69fcd9450b35aede25442c4f4dd2b11ff34c2147 (patch) | |
tree | 94a794efa521fbc5a197117157a29808cd459526 /ci | |
parent | b6cc7d415446524aa86b26410eb09fb1ee52896f (diff) |
cleanup old controllers and models for virtual deployments
Change-Id: I47d2085345820e404f300c2a935c477988b4132a
Signed-off-by: Di Xu <di.xu@arm.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 207482e2..1ffa7dab 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -14,6 +14,7 @@ opnfvfeature=none opnfvdistro=xenial opnfvarch=amd64 opnfvmodel=openstack +virtinstall=0 jujuver=`juju --version` @@ -33,9 +34,10 @@ usage() { echo "Usage: $0 [-s <nosdn|odl|opencontrail>] [-d <trusty|xenial>] [-a <amd64>] [-m <openstack|kubernetes>] + [-i <0|1>] [-r <a|b>]" 1>&2 exit 1; } -while getopts ":s:t:o:l:h:r:f:d:a:m:" opt; do +while getopts ":s:t:o:l:h:r:f:d:a:m:i:" opt; do case "${opt}" in s) opnfvsdn=${OPTARG} @@ -64,6 +66,9 @@ while getopts ":s:t:o:l:h:r:f:d:a:m:" opt; do m) opnfvmodel=${OPTARG} ;; + i) + virtinstall=${OPTARG} + ;; h) usage ;; @@ -201,6 +206,11 @@ check_status() { echo "...... deployment finishing ......." } +# In the case of a virtual deployment +if [ "$virtinstall" -eq 1 ]; then + ./clean.sh || true +fi + echo "...... deployment started ......" deploy |