2 ##############################################################################
4 # Copyright (c) 2019 AT&T Intellectual Property.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 ##############################################################################
20 # Installs well-known RIC charts then verifies specified helm chart
21 # Requires chart tgz archives in /tmp
24 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
26 IS_HELM3=$(helm version -c --short|grep -e "^v3")
28 # Start Helm local repo if there isn't one
29 HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
30 if [ -z "$HELM_REPO_PID" ]
34 nohup helm serve >& /dev/null &
36 nohup helm servecm --port=8879 --context-path=/charts --storage local >& /dev/null &
40 echo "Package ric-common and serve it using Helm local repo"
41 # Package common templates and serve it using Helm local repo
45 eval $(helm env |grep HELM_REPOSITORY_CACHE)
46 HELM_LOCAL_REPO="${HELM_REPOSITORY_CACHE}/local/"
48 HELM_HOME=$(helm home)
49 HELM_LOCAL_REPO="${HELM_HOME}/repository/local/"
52 HELM_HOME=$(helm home)
53 COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
54 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
55 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
57 AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
58 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
59 cp /tmp/aux-common-$AUX_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
61 NONRTRIC_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common/Chart.yaml | grep version | awk '{print $2}')
62 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common
63 cp /tmp/nonrtric-common-$NONRTRIC_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
67 helm repo index $HELM_HOME/repository/local/
69 echo "Make sure that helm local repo is added"
70 helm repo remove local
71 helm repo remove stable
72 helm repo add local http://127.0.0.1:8879/charts
74 echo "Create array of helm charts"
76 while IFS= read -r -d $'\0'; do
77 CHART_ARRAY+=("$REPLY")
78 done < <(find $ROOT_DIR/../ -maxdepth 5 -name Chart.yaml -printf '%h\0')
80 echo "***************************************"
81 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
82 used for grouping of all Nonrtric components in deployment"
84 for dir in "${CHART_ARRAY[@]}"
86 if [[ $dir == *"/helm/nonrtric"* ]]; then
87 echo "Skip Nonrtric Parent chart"
89 echo "Update chart dependency for directory $dir"
91 # Lint clearly marks errors; e.g., [ERROR]
92 if [ -z $OVERRIDEYAML ]; then
93 helm lint $dir > /tmp/output 2>&1
95 helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
97 echo "***************************************************************************************************************"
100 egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
101 echo "***************************************************************************************************************"
103 if [ -z $OVERRIDEYAML ]; then
104 helm template $dir > /tmp/output 2>&1
106 helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
108 echo "***************************************************************************************************************"
111 egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
112 echo "***************************************************************************************************************"