X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=bin%2Fverify-ric-charts;h=53cc831227cfcb2a8798b62fb784c6253f85c973;hb=refs%2Fchanges%2F50%2F6450%2F3;hp=84019ef8b5eef7b1a4a967f7d9d81d65339ef8be;hpb=2fcd391f36ba041a675a4e3012067eb673294857;p=it%2Fdep.git diff --git a/bin/verify-ric-charts b/bin/verify-ric-charts index 84019ef8..53cc8312 100755 --- a/bin/verify-ric-charts +++ b/bin/verify-ric-charts @@ -78,10 +78,14 @@ while IFS= read -r -d $'\0'; do done < <(find $ROOT_DIR/../ -maxdepth 5 -name Chart.yaml -printf '%h\0') echo "***************************************" - +echo "Remove nonrtric parent chart from linting as its a conceptual visualization of Nonrtric components. This chart doesn't contain any templates & it's primarily +used for grouping of all Nonrtric components in deployment" for dir in "${CHART_ARRAY[@]}" do + if [[ $dir == *"/helm/nonrtric"* ]]; then + echo "Skip Nonrtric Parent chart" + else echo "Update chart dependency for directory $dir" helm dep up $dir # Lint clearly marks errors; e.g., [ERROR] @@ -106,4 +110,5 @@ do sleep 1 egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1 echo "***************************************************************************************************************" + fi done