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 # Start Helm local repo if there isn't one
27 HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
28 if [ -z "$HELM_REPO_PID" ]; then
29 nohup helm serve >& /dev/null &
32 echo "Package ric-common and serve it using Helm local repo"
33 HELM_HOME=$(helm home)
34 COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
35 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
36 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
38 AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
39 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
40 cp /tmp/aux-common-$AUX_COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
42 helm repo index $HELM_HOME/repository/local/
44 echo "Make sure that helm local repo is added"
45 helm repo remove local
46 helm repo add local http://127.0.0.1:8879/charts
48 echo "Create array of helm charts"
50 while IFS= read -r -d $'\0'; do
51 CHART_ARRAY+=("$REPLY")
52 done < <(find $ROOT_DIR/../ -maxdepth 5 -name Chart.yaml -printf '%h\0')
54 echo "***************************************"
57 for dir in "${CHART_ARRAY[@]}"
59 echo "Update chart dependency for directory $dir"
61 # Lint clearly marks errors; e.g., [ERROR]
62 if [ -z $OVERRIDEYAML ]; then
63 helm lint $dir > /tmp/output 2>&1
65 helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
67 echo "***************************************************************************************************************"
70 egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
71 echo "***************************************************************************************************************"
73 if [ -z $OVERRIDEYAML ]; then
74 helm template $dir > /tmp/output 2>&1
76 helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
78 echo "***************************************************************************************************************"
81 egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
82 echo "***************************************************************************************************************"