From 03e724f7d3b40b777da27ad2e29248391b4efd92 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Fri, 7 Sep 2018 22:03:48 -0700 Subject: Add support for docker manifest parameter Change-Id: Ie1d5aaa23c31f20455982155591c9cf34c02757b Issue-ID: INT-586 Signed-off-by: Gary Wu --- deployment/heat/onap-oom/scripts/deploy.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'deployment/heat/onap-oom/scripts/deploy.sh') diff --git a/deployment/heat/onap-oom/scripts/deploy.sh b/deployment/heat/onap-oom/scripts/deploy.sh index c3418faf4..e97c5a3f5 100755 --- a/deployment/heat/onap-oom/scripts/deploy.sh +++ b/deployment/heat/onap-oom/scripts/deploy.sh @@ -17,10 +17,11 @@ if [ -z "$WORKSPACE" ]; then fi usage() { - echo "Usage: $0 [ -n ] [ -s ][ -b ][ -r ] " 1>&2; + echo "Usage: $0 [ -n ][ -s ][ -m ][ -r ][ -q ] " 1>&2; echo "n: Set the number of VM's that will be installed. This number must be between 2 and 15" 1>&2; echo "s: Set the name to be used for stack. This name will be used for naming of resources" 1>&2; + echo "m: The docker manifest to apply; must be either \"docker-manifest-staging.csv\" or \"docker-manifest.csv\"." 1>&2; echo "r: Delete all resources relating to ONAP within enviroment." 1>&2; echo "q: Quiet Delete of all ONAP resources." 1>&2; @@ -28,7 +29,7 @@ usage() { } -while getopts ":n:s:rq" o; do +while getopts ":n:s:m:rq" o; do case "${o}" in n) if [[ ${OPTARG} =~ ^[0-9]+$ ]];then @@ -48,6 +49,13 @@ while getopts ":n:s:rq" o; do usage fi ;; + m) + if [ -f $WORKSPACE/version-manifest/src/main/resources/${OPTARG} ]; then + docker_manifest=${OPTARG} + else + usage + fi + ;; r) echo "The following command will delete all information relating to onap within your enviroment" read -p "Are you certain this is what you want? (type y to confirm):" answer @@ -112,7 +120,7 @@ for n in $(seq 1 5); do ./scripts/gen-onap-oom-yaml.sh $vm_num > onap-oom.yaml~ fi - if ! openstack stack create -t ./onap-oom.yaml~ -e $ENV_FILE~ $stack_name; then + if ! openstack stack create -t ./onap-oom.yaml~ -e $ENV_FILE~ $stack_name --parameter docker_manifest=$docker_manifest; then break fi -- cgit 1.2.3-korg