blob: 53cc831227cfcb2a8798b62fb784c6253f85c973 [file] [log] [blame]
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -04001#!/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
22OVERRIDEYAML=$1
23
24ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
Alok Bhatt796e2c42020-11-11 04:46:58 +000025#Check for helm3
Alok Bhatt2fcd3912020-12-04 10:40:36 +000026IS_HELM3=$(helm version -c --short|grep -e "^v3")
Zhe Huangdc00cdf2020-02-10 13:45:15 -050027
28# Start Helm local repo if there isn't one
29HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
Alok Bhatt796e2c42020-11-11 04:46:58 +000030if [ -z "$HELM_REPO_PID" ]
31then
32 if [ -z $IS_HELM3 ]
33 then
34 nohup helm serve >& /dev/null &
35 else
36 nohup helm servecm --port=8879 --context-path=/charts --storage local >& /dev/null &
37 fi
Zhe Huangdc00cdf2020-02-10 13:45:15 -050038fi
39
40echo "Package ric-common and serve it using Helm local repo"
Alok Bhatt796e2c42020-11-11 04:46:58 +000041# Package common templates and serve it using Helm local repo
42HELM_LOCAL_REPO=""
43if [ $IS_HELM3 ]
44then
45 eval $(helm env |grep HELM_REPOSITORY_CACHE)
46 HELM_LOCAL_REPO="${HELM_REPOSITORY_CACHE}/local/"
47else
48 HELM_HOME=$(helm home)
49 HELM_LOCAL_REPO="${HELM_HOME}/repository/local/"
50fi
51
Zhe Huangdc00cdf2020-02-10 13:45:15 -050052HELM_HOME=$(helm home)
53COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
54helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000055cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huangdc00cdf2020-02-10 13:45:15 -050056
57AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
58helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000059cp /tmp/aux-common-$AUX_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huangdc00cdf2020-02-10 13:45:15 -050060
Lathish7e090012020-04-01 17:38:20 +010061NONRTRIC_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common/Chart.yaml | grep version | awk '{print $2}')
62helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000063cp /tmp/nonrtric-common-$NONRTRIC_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Lathish7e090012020-04-01 17:38:20 +010064
65
66
Zhe Huangdc00cdf2020-02-10 13:45:15 -050067helm repo index $HELM_HOME/repository/local/
68
69echo "Make sure that helm local repo is added"
70helm repo remove local
Zhe Huanga028c292020-12-01 13:54:54 -050071helm repo remove stable
Zhe Huangdc00cdf2020-02-10 13:45:15 -050072helm repo add local http://127.0.0.1:8879/charts
73
74echo "Create array of helm charts"
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040075CHART_ARRAY=()
76while IFS= read -r -d $'\0'; do
77 CHART_ARRAY+=("$REPLY")
Zhe Huangdc00cdf2020-02-10 13:45:15 -050078done < <(find $ROOT_DIR/../ -maxdepth 5 -name Chart.yaml -printf '%h\0')
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040079
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040080echo "***************************************"
Lathish16d17882020-11-04 09:44:05 +000081echo "Remove nonrtric parent chart from linting as its a conceptual visualization of Nonrtric components. This chart doesn't contain any templates & it's primarily
82used for grouping of all Nonrtric components in deployment"
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040083
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040084for dir in "${CHART_ARRAY[@]}"
85do
Lathish16d17882020-11-04 09:44:05 +000086 if [[ $dir == *"/helm/nonrtric"* ]]; then
87 echo "Skip Nonrtric Parent chart"
88 else
Zhe Huangdc00cdf2020-02-10 13:45:15 -050089 echo "Update chart dependency for directory $dir"
90 helm dep up $dir
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040091 # Lint clearly marks errors; e.g., [ERROR]
92 if [ -z $OVERRIDEYAML ]; then
93 helm lint $dir > /tmp/output 2>&1
94 else
95 helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
96 fi
97 echo "***************************************************************************************************************"
Zhe Huangdc00cdf2020-02-10 13:45:15 -050098 cat /tmp/output
99
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -0400100 egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
101 echo "***************************************************************************************************************"
102
103 if [ -z $OVERRIDEYAML ]; then
104 helm template $dir > /tmp/output 2>&1
105 else
106 helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
107 fi
108 echo "***************************************************************************************************************"
Zhe Huangdc00cdf2020-02-10 13:45:15 -0500109 cat /tmp/output
110 sleep 1
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -0400111 egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
112 echo "***************************************************************************************************************"
Lathish16d17882020-11-04 09:44:05 +0000113 fi
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -0400114done