Add Docker based CI verify job 77/2277/5
authorwrider <lji@research.att.com>
Mon, 20 Jan 2020 20:28:51 +0000 (15:28 -0500)
committerZhe Huang <zhehuang@research.att.com>
Tue, 21 Jan 2020 20:29:48 +0000 (15:29 -0500)
Change-Id: I69713808445b7b97c119bec845e689fb2f2c5be2
Signed-off-by: wrider <lji@research.att.com>
bin/setup-ric-common-template [new file with mode: 0755]
bin/verify-ric-charts [new file with mode: 0755]
ci/Dockerfile [new file with mode: 0644]

diff --git a/bin/setup-ric-common-template b/bin/setup-ric-common-template
new file mode 100755 (executable)
index 0000000..bd7bb64
--- /dev/null
@@ -0,0 +1,54 @@
+#!/bin/bash
+##############################################################################
+#
+#   Copyright (c) 2019 AT&T Intellectual Property.
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+##############################################################################
+
+
+ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
+
+# Download it/dep common template charts
+#git clone "https://gerrit.o-ran-sc.org/r/it/dep" ../dep
+git clone --single-branch --branch r3 "https://gerrit.o-ran-sc.org/r/it/dep" ../dep
+
+# Start Helm local repo if there isn't one
+HELM_REPO_PID=$(ps -x | grep  "helm serve" | grep -v "grep" | awk '{print $1}')
+if [ -z "$HELM_REPO_PID" ]; then
+    nohup helm serve >& /dev/null &
+fi
+
+# Package ric-common and serve it using Helm local repo
+HELM_HOME=$(helm home)
+COMMON_CHART_VERSION=$(cat $ROOT_DIR/../dep/ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
+helm package -d /tmp $ROOT_DIR/../dep/ric-common/Common-Template/helm/ric-common
+cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
+
+AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../dep/ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
+helm package -d /tmp $ROOT_DIR/../dep/ric-common/Common-Template/helm/aux-common
+cp /tmp/aux-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
+
+
+
+helm repo index $HELM_HOME/repository/local/
+
+
+# Make sure that helm local repo is added
+helm repo remove local
+helm repo add local http://127.0.0.1:8879/charts
+
+
+# Remove it/dep charts
+rm -rf ../dep
diff --git a/bin/verify-ric-charts b/bin/verify-ric-charts
new file mode 100755 (executable)
index 0000000..69fc49f
--- /dev/null
@@ -0,0 +1,71 @@
+#!/bin/bash
+##############################################################################
+#
+#   Copyright (c) 2019 AT&T Intellectual Property.
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+##############################################################################
+
+# Installs well-known RIC charts then verifies specified helm chart
+# Requires chart tgz archives in /tmp
+OVERRIDEYAML=$1
+
+ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
+
+./setup-ric-common-template
+
+# Create array of helm charts
+CHART_ARRAY=()
+while IFS= read -r -d $'\0'; do
+    CHART_ARRAY+=("$REPLY")
+done < <(find $ROOT_DIR/../ -maxdepth 4 -name Chart.yaml -printf '%h\0')
+
+echo "***************************************"
+
+
+for dir in "${CHART_ARRAY[@]}"
+do
+  
+    echo "Update chart depenedency"
+    helm dep up $dir 
+    # Lint clearly marks errors; e.g., [ERROR]
+    if [ -z $OVERRIDEYAML ]; then
+        helm lint $dir > /tmp/output 2>&1
+    else
+        helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
+    fi
+    echo "***************************************************************************************************************"
+    cat /tmp/output 
+    
+    egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
+    echo "***************************************************************************************************************"
+
+    if [ -z $OVERRIDEYAML ]; then
+        helm template $dir > /tmp/output 2>&1
+    else
+       helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
+    fi
+    echo "***************************************************************************************************************"
+    cat /tmp/output 
+   sleep 1 
+    egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
+    echo "***************************************************************************************************************"
+
+done
+#Error: 1 chart(s) linted, 1 chart(s) failed
+
+
+
+exit 0
+
diff --git a/ci/Dockerfile b/ci/Dockerfile
new file mode 100644 (file)
index 0000000..27618f5
--- /dev/null
@@ -0,0 +1,28 @@
+##############################################################################
+#
+#   Copyright (c) 2019 AT&T Intellectual Property.
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+#
+##############################################################################
+
+FROM ubuntu:18.04
+RUN apt-get update && apt-get -y install curl
+ARG GH=get_helm.sh
+# often times out during LF jenkins build
+RUN curl --silent --show-error --connect-timeout 10 --retry 6 -L https://raw.githubusercontent.com/helm/helm/master/scripts/get -o ${GH}
+RUN bash ${GH}
+RUN helm init -c
+ARG TGT=/tmp/ric-plt-ric-dep
+COPY . $TGT
+RUN $TGT/bin/verify-ric-charts