d791e2264d36f67a40dc50e02435b656c9a99918
[it/dep.git] / bin / prepare-common-templates
1 #!/bin/bash
2 ################################################################################
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
20 ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
21
22 # Start Helm local repo if there isn't one
23 HELM_REPO_PID=$(ps -x | grep  "helm serve" | grep -v "grep" | awk '{print $1}')
24 if [ -z "$HELM_REPO_PID" ]; then
25     nohup helm serve >& /dev/null &
26 fi
27
28
29
30 # Package common templates and serve it using Helm local repo
31 HELM_HOME=$(helm home)
32 COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
33 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/ric-common
34 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
35
36 AUX_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/aux-common/Chart.yaml | grep version | awk '{print $2}')
37 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/aux-common
38 cp /tmp/aux-common-$AUX_COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
39
40 NONRTRIC_COMMON_CHART_VERSION=$(cat $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common/Chart.yaml | grep version | awk '{print $2}')
41 helm package -d /tmp $ROOT_DIR/../ric-common/Common-Template/helm/nonrtric-common
42 cp /tmp/nonrtric-common-$NONRTRIC_COMMON_CHART_VERSION.tgz $HELM_HOME/repository/local/
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
52