diff options
Diffstat (limited to 'version-manifest/src/main')
-rwxr-xr-x | version-manifest/src/main/scripts/pull-docker-images.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/version-manifest/src/main/scripts/pull-docker-images.sh b/version-manifest/src/main/scripts/pull-docker-images.sh new file mode 100755 index 000000000..32efc6baf --- /dev/null +++ b/version-manifest/src/main/scripts/pull-docker-images.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +if [ "$#" -lt 1 ]; then + echo This script pulls all the ONAP docker images contained in OOM helm charts + echo "$0 <oom repo directory> <proxy URL>" + exit 1 +fi + +OOM_DIR=$(realpath $1) +PROXY="nexus3.onap.org:10001" + +if [ "$#" -eq 2 ]; then + PROXY=$2 +fi + + +if [ -z "$WORKSPACE" ]; then + export WORKSPACE=`git rev-parse --show-toplevel` +fi + + +MANIFEST=$(mktemp --suffix=-docker-manifest.csv) +$WORKSPACE/version-manifest/src/main/scripts/generate-docker-manifest.sh $MANIFEST $OOM_DIR +IMAGES=$(tail -n +2 $MANIFEST | tr ',' ':') + +for image in $IMAGES; do + docker pull ${PROXY}/${image} +done |