X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=bin%2Fverify-ric-charts;h=2a8b9e654f50dc885f604f1e74de53e8810c641e;hb=4af742095300e8ea4cb49243796183b352a110c1;hp=69fc49f93b1aea9e2a6dc4c662803451c1891849;hpb=4c278289d5bcb55892d99151310cb1df046f5d52;p=ric-plt%2Fric-dep.git diff --git a/bin/verify-ric-charts b/bin/verify-ric-charts index 69fc49f..2a8b9e6 100755 --- a/bin/verify-ric-charts +++ b/bin/verify-ric-charts @@ -16,56 +16,90 @@ # limitations under the License. # ############################################################################## +# Verifies RIC helm charts +# Requires Linux with wget and tar. +# This script should be executed inside the ric-plt/ric-dep bin directory only. +set -eu +echo "--> verify-ric-charts" -# 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 )" +# (Optional) provide HELMVERSION as first parameter. It selects the helm client version +# (Optional) provide OVERRIDEYAML as the second parameter. It allows us to specify an override file to replace values used to render the helm charts +if [[ "${1:-nope}" != "nope" ]]; then + HELMVERSION=$1 +else + HELMVERSION=2.12.3 +fi +if [[ "${2:-nope}" != "nope" ]]; then + OVERRIDEYAML=$2 +fi -./setup-ric-common-template +ROOT_DIR="$(pwd)" +HELM_COMMAND=helm + +if ! $($HELM_COMMAND > /dev/null);then + echo "Download and install Helm" + if [ ! -e helm-v${HELMVERSION}-linux-amd64.tar.gz ]; then + wget -nv https://storage.googleapis.com/kubernetes-helm/helm-v${HELMVERSION}-linux-amd64.tar.gz + fi + tar -xvf ./helm-v${HELMVERSION}-linux-amd64.tar.gz + mv linux-amd64/helm ./ + HELM_COMMAND=./helm + $HELM_COMMAND init -c +fi +# Set up ric common template +# Download it/dep common template charts +git clone --single-branch --branch master "https://gerrit.o-ran-sc.org/r/it/dep" ./dep + +# Start Helm local repo if there isn't one +if [ ! -z $(pgrep "$HELM_COMMAND") ]; then + echo "Stopping existing local Helm server." + kill -9 "$(pgrep "$HELM_COMMAND")" +fi +if [ ! -d ./charts ]; then + mkdir ./charts +fi +echo "Starting local Helm server" +nohup $HELM_COMMAND serve --repo-path charts >& /dev/null & +# Package ric-common and serve it using Helm local repo +$HELM_COMMAND package --save=false -d ./charts "$ROOT_DIR/dep/ric-common/Common-Template/helm/ric-common" +$HELM_COMMAND package --save=false -d ./charts "$ROOT_DIR/dep/ric-common/Common-Template/helm/aux-common" +$HELM_COMMAND repo index ./charts +# Make sure that helm local repo is added +$HELM_COMMAND repo remove local +$HELM_COMMAND repo add local http://127.0.0.1:8879/charts +# Remove it/dep charts +rm -rf ./dep # Create array of helm charts +echo "Finding all 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') +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 + echo "Running helm lint and verification on chart $dir" + echo "Update chart dependency" + $HELM_COMMAND dep up "$dir" # Lint clearly marks errors; e.g., [ERROR] - if [ -z $OVERRIDEYAML ]; then - helm lint $dir > /tmp/output 2>&1 + echo "Performing Helm lint" + if [[ "${OVERRIDEYAML:-nope}" != "nope" ]]; then + $HELM_COMMAND lint -f "$OVERRIDEYAML" "$dir" else - helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1 + $HELM_COMMAND lint "$dir" 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 + echo "Rendering Helm charts locally" + if [[ "${OVERRIDEYAML:-nope}" != "nope" ]]; then + $HELM_COMMAND template -f "$OVERRIDEYAML" "$dir" else - helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1 + $HELM_COMMAND template "$dir" 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 - - - +echo "--> verify-ric-charts ends" exit 0