Add script to create docker manifest from oom repo 77/87377/2
authorGary Wu <gary.i.wu@huawei.com>
Thu, 9 May 2019 15:50:23 +0000 (08:50 -0700)
committerGary Wu <gary.i.wu@huawei.com>
Thu, 9 May 2019 17:47:33 +0000 (10:47 -0700)
Change-Id: I09652f812b9c83dd510f75de58e3402572becf79
Issue-ID: INT-1055
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
version-manifest/src/main/scripts/compare-docker-manifests.sh
version-manifest/src/main/scripts/generate-docker-manifest.sh [new file with mode: 0755]

index 86f8221..7359132 100755 (executable)
@@ -18,8 +18,8 @@ for line in $(join -t, $1 $2 | tail -n +2); do
     release=$(echo $line | cut -d , -f 2)
     staging=$(echo $line | cut -d , -f 3)
 
-    if [[ "${staging}_" < "${release}_" ]]; then
-        echo "[WARNING] $image:$staging is older than $release."
+    if [[ "${staging//./-}_" < "${release//./-}_" ]]; then
+        echo "[ERROR] $image:$staging is out-of-date vs. release ($release)."
     fi
 done
 exit $err
diff --git a/version-manifest/src/main/scripts/generate-docker-manifest.sh b/version-manifest/src/main/scripts/generate-docker-manifest.sh
new file mode 100755 (executable)
index 0000000..18a0dbb
--- /dev/null
@@ -0,0 +1,35 @@
+#!/bin/bash
+
+realpath() {
+  OURPWD="$PWD"
+  cd "$(dirname "$1")"
+  LINK=$(readlink "$(basename "$1")")
+  while [ "$LINK" ]; do
+    cd "$(dirname "$LINK")"
+    LINK=$(readlink "$(basename "$1")")
+  done
+  REALPATH="$PWD/$(basename "$1")"
+  cd "$OURPWD"
+  echo "$REALPATH"
+}
+
+if [ "$#" -ne 2 ]; then
+    echo This script creates a docker manifest using OOM helm charts as source
+    echo "$0 <docker-manifest.csv> <oom repo directory>"
+    exit 1
+fi
+
+# expected parameters
+MANIFEST=$(realpath $1)
+OOM_DIR=$(realpath $2)
+
+if [ -z "$WORKSPACE" ]; then
+    export WORKSPACE=`git rev-parse --show-toplevel`
+fi
+
+cd $OOM_DIR/kubernetes
+
+echo "image,tag" > $MANIFEST.tmp
+rgrep -h -E ': onap/.*:.*' | awk '{$1=$1};1' | cut -d' ' -f2 | tr ':' ',' >> $MANIFEST.tmp
+LC_ALL=C sort -u < $MANIFEST.tmp > $MANIFEST
+rm $MANIFEST.tmp