Updating the G release recipe
[ric-plt/ric-dep.git] / bin / install_common_templates_to_helm.sh
1 #!/bin/bash
2 ################################################################################
3 #   Copyright (c) 2022 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17
18 echo "Installing servecm (Chart Manager) and common templates to helm3"
19
20 helm plugin install https://github.com/jdolitsky/helm-servecm
21 eval $(helm env |grep HELM_REPOSITORY_CACHE) 
22 echo ${HELM_REPOSITORY_CACHE}
23
24 nohup helm servecm --port=8879 --context-path=/charts --storage local --storage-local-rootdir $HELM_REPOSITORY_CACHE/local/ <<EOF &
25 yes
26 EOF
27
28 CURL_CMD="curl --silent --output /dev/null  http://127.0.0.1:8879/charts"
29 `${CURL_CMD}`
30 READY=$?
31 while [ ${READY} != 0 ]; do
32         echo "servecm not yet running. sleeping for 2 seconds"
33         sleep 2
34         `${CURL_CMD}`
35         READY=$?
36 done
37 echo "servcm up and running"
38
39 eval $(helm env |grep HELM_REPOSITORY_CACHE)
40 echo ${HELM_REPOSITORY_CACHE}
41 mkdir -p "${HELM_REPOSITORY_CACHE}/local/"
42
43 export COMMON_CHART_VERSION=$(cat ../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
44 helm package -d /tmp ../ric-common/Common-Template/helm/ric-common
45 cp /tmp/ric-common-${COMMON_CHART_VERSION}.tgz "${HELM_REPOSITORY_CACHE}/local/"
46 helm repo remove local
47 helm repo add local http://127.0.0.1:8879/charts
48
49 echo "checking that ric-common templates were added"
50 helm search repo local/ric-common
51
52
53