blob: 51e9b5848001136f76b9c9eb2673689e976430a1 [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.
aravind.est2b8f9822024-08-30 15:40:56 +01005# Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -04006#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19##############################################################################
20
21# Installs well-known RIC charts then verifies specified helm chart
22# Requires chart tgz archives in /tmp
23OVERRIDEYAML=$1
24
25ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
Alok Bhatt796e2c42020-11-11 04:46:58 +000026#Check for helm3
Alok Bhatt2fcd3912020-12-04 10:40:36 +000027IS_HELM3=$(helm version -c --short|grep -e "^v3")
Zhe Huangdc00cdf2020-02-10 13:45:15 -050028
29# Start Helm local repo if there isn't one
30HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
Alok Bhatt796e2c42020-11-11 04:46:58 +000031if [ -z "$HELM_REPO_PID" ]
32then
33 if [ -z $IS_HELM3 ]
34 then
35 nohup helm serve >& /dev/null &
36 else
37 nohup helm servecm --port=8879 --context-path=/charts --storage local >& /dev/null &
38 fi
Zhe Huangdc00cdf2020-02-10 13:45:15 -050039fi
40
41echo "Package ric-common and serve it using Helm local repo"
Alok Bhatt796e2c42020-11-11 04:46:58 +000042# Package common templates and serve it using Helm local repo
43HELM_LOCAL_REPO=""
44if [ $IS_HELM3 ]
45then
46 eval $(helm env |grep HELM_REPOSITORY_CACHE)
47 HELM_LOCAL_REPO="${HELM_REPOSITORY_CACHE}/local/"
48else
49 HELM_HOME=$(helm home)
50 HELM_LOCAL_REPO="${HELM_HOME}/repository/local/"
51fi
52
Zhe Huangdc00cdf2020-02-10 13:45:15 -050053HELM_HOME=$(helm home)
54COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
55helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000056cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huangdc00cdf2020-02-10 13:45:15 -050057
58AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
59helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000060cp /tmp/aux-common-$AUX_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huangdc00cdf2020-02-10 13:45:15 -050061
Lathish7e090012020-04-01 17:38:20 +010062
63
aravind.est2b8f9822024-08-30 15:40:56 +010064helm repo index $HELM_LOCAL_REPO
Zhe Huangdc00cdf2020-02-10 13:45:15 -050065
66echo "Make sure that helm local repo is added"
67helm repo remove local
Zhe Huanga028c292020-12-01 13:54:54 -050068helm repo remove stable
Zhe Huangdc00cdf2020-02-10 13:45:15 -050069helm repo add local http://127.0.0.1:8879/charts
70
71echo "Create array of helm charts"
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040072CHART_ARRAY=()
73while IFS= read -r -d $'\0'; do
74 CHART_ARRAY+=("$REPLY")
aravind.est2b8f9822024-08-30 15:40:56 +010075done < <(find $ROOT_DIR/../ -not -path "$ROOT_DIR/../nonrtric/*" -maxdepth 5 -name Chart.yaml -printf '%h\0')
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040076
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040077echo "***************************************"
Lathish16d17882020-11-04 09:44:05 +000078echo "Remove nonrtric parent chart from linting as its a conceptual visualization of Nonrtric components. This chart doesn't contain any templates & it's primarily
79used for grouping of all Nonrtric components in deployment"
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040080
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040081for dir in "${CHART_ARRAY[@]}"
82do
Lathish16d17882020-11-04 09:44:05 +000083 if [[ $dir == *"/helm/nonrtric"* ]]; then
84 echo "Skip Nonrtric Parent chart"
85 else
Zhe Huangdc00cdf2020-02-10 13:45:15 -050086 echo "Update chart dependency for directory $dir"
87 helm dep up $dir
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040088 # Lint clearly marks errors; e.g., [ERROR]
89 if [ -z $OVERRIDEYAML ]; then
90 helm lint $dir > /tmp/output 2>&1
91 else
92 helm lint -f $OVERRIDEYAML $dir> /tmp/output 2>&1
93 fi
94 echo "***************************************************************************************************************"
Zhe Huangdc00cdf2020-02-10 13:45:15 -050095 cat /tmp/output
96
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -040097 egrep -q '^Error: [0-9]* chart\(s\) linted, [0-9]* chart\(s\) failed' /tmp/output && exit 1
98 echo "***************************************************************************************************************"
99
100 if [ -z $OVERRIDEYAML ]; then
101 helm template $dir > /tmp/output 2>&1
102 else
103 helm template -f $OVERRIDEYAML $dir > /tmp/output 2>&1
104 fi
105 echo "***************************************************************************************************************"
Zhe Huangdc00cdf2020-02-10 13:45:15 -0500106 cat /tmp/output
107 sleep 1
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -0400108 egrep -n '%!.\(.*=.*\)' /tmp/output && echo "Error: Type mismatch." && exit 1
109 echo "***************************************************************************************************************"
Lathish16d17882020-11-04 09:44:05 +0000110 fi
Lott, Christopher (cl778h)6f157d72019-07-25 06:32:02 -0400111done