3cdbab61729b1040b39b0eb46e16acd6103d73c1
[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 # 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-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
41
42
43
44 helm repo index $HELM_HOME/repository/local/
45
46
47 # Make sure that helm local repo is added
48 helm repo remove local
49 helm repo add local http://127.0.0.1:8879/charts
50
51 # Create array of helm charts
52 CHART_ARRAY=()
53 while IFS= read -r -d $'\0'; do
54     CHART_ARRAY+=("$REPLY")
55 done < <(find $ROOT_DIR/../ -maxdepth 5 -name Chart.yaml -printf '%h\0')
56
57 echo "***************************************"
58
59
60 for dir in "${CHART_ARRAY[@]}"
61 do
62   
63     echo "Update chart depenedency"
64     helm dep up $dir 
65     # Lint clearly marks errors; e.g., [ERROR]
66     if [ -z $OVERRIDEYAML ]; then
67         helm lint $dir > /tmp/output 2>&1
68     else
69         helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
70     fi
71     echo "***************************************************************************************************************"
72     cat /tmp/output 
73     
74     egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
75     echo "***************************************************************************************************************"
76
77     if [ -z $OVERRIDEYAML ]; then
78         helm template $dir > /tmp/output 2>&1
79     else
80         helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
81     fi
82     echo "***************************************************************************************************************"
83     cat /tmp/output 
84    sleep 1 
85     egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
86     echo "***************************************************************************************************************"
87
88 done
89 #Error: 1 chart(s) linted, 1 chart(s) failed
90
91
92
93 exit 0
94