blob: 8743260609d16441c4ce1dfa97c3ac696737afea [file] [log] [blame]
Alok Bhatt796e2c42020-11-11 04:46:58 +00001#!/bin/bash -x
Zhe Huang4d2d4f12020-04-23 15:13:30 -04002################################################################################
3# Copyright (c) 2019 AT&T Intellectual Property. #
4# Copyright (c) 2019 Nokia. #
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
20ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
21
Alok Bhatt796e2c42020-11-11 04:46:58 +000022#Check for helm3
Alok Bhatt2fcd3912020-12-04 10:40:36 +000023IS_HELM3=$(helm version -c --short|grep -e "^v3")
Alok Bhatt796e2c42020-11-11 04:46:58 +000024
Zhe Huang4d2d4f12020-04-23 15:13:30 -040025# Start Helm local repo if there isn't one
26HELM_REPO_PID=$(ps -x | grep "helm serve" | grep -v "grep" | awk '{print $1}')
Alok Bhatt796e2c42020-11-11 04:46:58 +000027
28if [ -z "$HELM_REPO_PID" ]
29then
30 if [ -z $IS_HELM3 ]
31 then
32 nohup helm serve >& /dev/null &
33 else
34 nohup helm servecm --port=8879 --context-path=/charts --storage local >& /dev/null &
35 fi
Zhe Huang4d2d4f12020-04-23 15:13:30 -040036fi
37
Alok Bhatt3d9fb8c2021-03-16 06:04:33 +000038# Check if servecm plugin is ready to serve request
39command='curl --silent --output /dev/null http://127.0.0.1:8879/charts'
40for i in $(seq 1 5)
41do $command && s=0 && break || s=$? && echo "Error connecting chartmuseum server. Retrying after 5s" && sleep 5;
42done
43
44if [ $s -gt 0 ]
45then
46 echo "Cmd to test chartmuseum failed with ($s): $command"
47 exit $s
48fi
49
Zhe Huang4d2d4f12020-04-23 15:13:30 -040050# Package common templates and serve it using Helm local repo
Alok Bhatt796e2c42020-11-11 04:46:58 +000051if [ $IS_HELM3 ]
52then
53 eval $(helm env |grep HELM_REPOSITORY_CACHE)
54 HELM_LOCAL_REPO="${HELM_REPOSITORY_CACHE}/local/"
55 mkdir -p $HELM_LOCAL_REPO
56else
57 HELM_HOME=$(helm home)
58 HELM_LOCAL_REPO="${HELM_HOME}/repository/local/"
59fi
60
Zhe Huang4d2d4f12020-04-23 15:13:30 -040061COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
62helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000063cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huang4d2d4f12020-04-23 15:13:30 -040064
65AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
66helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000067cp /tmp/aux-common-$AUX_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huang4d2d4f12020-04-23 15:13:30 -040068
69NONRTRIC_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common/Chart.yaml | grep version | awk '{print $2}')
70helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common
Alok Bhatt796e2c42020-11-11 04:46:58 +000071cp /tmp/nonrtric-common-$NONRTRIC_COMMON_CHART_VERSION.tgz $HELM_LOCAL_REPO
Zhe Huang4d2d4f12020-04-23 15:13:30 -040072
Alok Bhatt796e2c42020-11-11 04:46:58 +000073helm repo index $HELM_LOCAL_REPO
Zhe Huang4d2d4f12020-04-23 15:13:30 -040074
75
76# Make sure that helm local repo is added
77helm repo remove local
78helm repo add local http://127.0.0.1:8879/charts
79
80
81