9449837f9c6719e19d2e2220188e50aaf932f548
[it/dep.git] / bin / verify-ric-charts
1 #!/bin/bash
2 ##############################################################################
3 #
4 #   Copyright (c) 2019 AT&T Intellectual Property.
5 #
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
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
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.
17 #
18 ##############################################################################
19
20 # Installs well-known RIC charts then verifies specified helm chart
21 # Requires chart tgz archives in /tmp
22 OVERRIDEYAML=$1
23
24 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
25
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 &
30 fi
31
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/
37
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/
41
42 NONRTRIC_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common/Chart.yaml | grep version | awk '{print $2}')
43 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common
44 cp /tmp/nonrtric-common-$NONRTRIC_COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
45
46
47
48 helm repo index $HELM_HOME/repository/local/
49
50 echo "Make sure that helm local repo is added"
51 helm repo remove local
52 helm repo remove stable
53 helm repo add local http://127.0.0.1:8879/charts
54
55 echo "Create array of helm charts"
56 CHART_ARRAY=()
57 while IFS= read -r -d $'\0'; do
58     CHART_ARRAY+=("$REPLY")
59 done < <(find $ROOT_DIR/../ -maxdepth 5 -name Chart.yaml -printf '%h\0')
60
61 echo "***************************************"
62
63
64 for dir in "${CHART_ARRAY[@]}"
65 do
66     echo "Update chart dependency for directory $dir"
67     helm dep up $dir
68     # Lint clearly marks errors; e.g., [ERROR]
69     if [ -z $OVERRIDEYAML ]; then
70         helm lint $dir > /tmp/output 2>&1
71     else
72         helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
73     fi
74     echo "***************************************************************************************************************"
75     cat /tmp/output
76
77     egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
78     echo "***************************************************************************************************************"
79
80     if [ -z $OVERRIDEYAML ]; then
81         helm template $dir > /tmp/output 2>&1
82     else
83         helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
84     fi
85     echo "***************************************************************************************************************"
86     cat /tmp/output
87    sleep 1
88     egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
89     echo "***************************************************************************************************************"
90 done