diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-10 20:49:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-05-10 20:49:33 +0000 |
commit | f96f0902a611fb61378251b0b3192ba56e1939f1 (patch) | |
tree | d969ba0f820236ab941947eacb3db6e04d6bf3bc /test/csit/scripts/run-instance.sh | |
parent | ee9f6a171e16ec1e1f60596a15db021dec4831ea (diff) | |
parent | f8aab84d0665344ac865baa24ee3e10335d63b5e (diff) |
Merge "CSIT for Multicloud-Ocata HPA"
Diffstat (limited to 'test/csit/scripts/run-instance.sh')
-rwxr-xr-x | test/csit/scripts/run-instance.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/csit/scripts/run-instance.sh b/test/csit/scripts/run-instance.sh index e68ecb3e0..84ab34398 100755 --- a/test/csit/scripts/run-instance.sh +++ b/test/csit/scripts/run-instance.sh @@ -17,6 +17,7 @@ # $1 docker image path under ${WORKSPACE}/test/csit/docker/ # $2 nickname for the instance # $3 docker run options, e.g. variables -echo $@ + +echo "docker run --name $2 $3 -d $1" docker run --name $2 $3 -d $1 |