From 7f114f5e27b5565fb3923eff9ad1bd6955ce1844 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Thu, 3 May 2018 17:06:06 -0700 Subject: Verify that docker manifest images exist in nexus3 Add enforcement check to ensure that all docker images specified in the manifest can actually be found on nexus3. Change-Id: I49ebc60a50cbb9f36f6e06d2d69c39cfeeacfcde Issue-ID: INT-488 Signed-off-by: Gary Wu --- .../src/main/scripts/check-docker-manifest.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 version-manifest/src/main/scripts/check-docker-manifest.sh (limited to 'version-manifest/src/main/scripts/check-docker-manifest.sh') diff --git a/version-manifest/src/main/scripts/check-docker-manifest.sh b/version-manifest/src/main/scripts/check-docker-manifest.sh new file mode 100755 index 000000000..9064c836d --- /dev/null +++ b/version-manifest/src/main/scripts/check-docker-manifest.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +if [ -z "$WORKSPACE" ]; then + export WORKSPACE=`git rev-parse --show-toplevel` +fi + +NEXUS_PREFIX="https://nexus3.onap.org/repository/docker.public/v2" + +err=0 +for line in $(tail -n +2 $1); do + image=$(echo $line | cut -d , -f 1) + tag=$(echo $line | cut -d , -f 2) + tags=$(curl -s $NEXUS_PREFIX/$image/tags/list | jq -r '.tags[]') + echo "$tags" | grep -q "^$tag\$" + if [ $? -ne 0 ]; then + echo "[ERROR] $image:$tag not found" + echo "$tags" | sed 's/^/ /' + (( err++ )) + fi +done +exit $err -- cgit 1.2.3-korg