From db365a74cc703bcfd328eb12c8e3262a003f0a6b Mon Sep 17 00:00:00 2001 From: wrider Date: Mon, 20 Jan 2020 15:28:51 -0500 Subject: [PATCH] Add Docker based CI verify job Change-Id: I69713808445b7b97c119bec845e689fb2f2c5be2 Signed-off-by: wrider --- bin/setup-ric-common-template | 54 ++++++++++++++++++++++++++++++++ bin/verify-ric-charts | 71 +++++++++++++++++++++++++++++++++++++++++++ ci/Dockerfile | 28 +++++++++++++++++ 3 files changed, 153 insertions(+) create mode 100755 bin/setup-ric-common-template create mode 100755 bin/verify-ric-charts create mode 100644 ci/Dockerfile diff --git a/bin/setup-ric-common-template b/bin/setup-ric-common-template new file mode 100755 index 0000000..bd7bb64 --- /dev/null +++ b/bin/setup-ric-common-template @@ -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 index 0000000..69fc49f --- /dev/null +++ b/bin/verify-ric-charts @@ -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 index 0000000..27618f5 --- /dev/null +++ b/ci/Dockerfile @@ -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 -- 2.16.6