Add script to pull all docker images 65/28065/1
authorGary Wu <gary.i.wu@huawei.com>
Fri, 12 Jan 2018 18:38:49 +0000 (10:38 -0800)
committerGary Wu <gary.i.wu@huawei.com>
Fri, 12 Jan 2018 18:38:49 +0000 (10:38 -0800)
Change-Id: Ie4160127335e8cd563ebe52beee7ad6a8807f135
Issue-ID: INT-380
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
test/ete/scripts/pull-docker-images.sh [new file with mode: 0755]

diff --git a/test/ete/scripts/pull-docker-images.sh b/test/ete/scripts/pull-docker-images.sh
new file mode 100755 (executable)
index 0000000..e14ee83
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/bash -x
+
+# this script will pull all the docker images listed in the manifest
+# specify a parameter to override the default proxy of nexus3.onap.org:100001
+
+if [ "$#" -ne 1 ]; then
+    PROXY=nexus3.onap.org:10001
+else
+    PROXY=$1
+fi
+
+
+if [ -z "$WORKSPACE" ]; then
+    export WORKSPACE=`git rev-parse --show-toplevel`
+fi
+
+MANIFEST=${WORKSPACE}/version-manifest/src/main/resources/docker-manifest.csv
+IMAGES=$(tail -n +2 $MANIFEST | tr ',' ':')
+
+for image in $IMAGES; do
+    docker pull ${PROXY}/${image}
+done