NONRTRIC-946: Servicemanager - Add Kong data plane and control plane
[it/dep.git] / smo-install / scripts / layer-0 / 0-setup-helm3.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # ORAN SMO Package
6 # ================================================================================
7 # Copyright (C) 2021 AT&T Intellectual Property. All rights
8 #                             reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 # http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END============================================
22 # ===================================================================
23 #
24 ###
25 #Helm package
26 cd /tmp
27 wget https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz
28 tar xvfz /tmp/helm-v3.5.4-linux-amd64.tar.gz
29 sudo mv linux-amd64/helm /usr/local/bin/helm
30 sudo apt-get install git -y
31
32
33 echo "Checking HELM ..."
34 helm version
35
36 TAR_VERSION=0.9.0
37 echo "Downloading and installing helm-push v${TAR_VERSION} ..."
38 TAR_FILE=helm-push_${TAR_VERSION}_linux_amd64.tar.gz
39 HELM_PLUGINS=$(helm env HELM_PLUGINS)
40 mkdir -p $HELM_PLUGINS/helm-push
41 cd $HELM_PLUGINS/helm-push
42 wget https://nexus.o-ran-sc.org/service/local/repositories/images/content/$TAR_FILE
43 tar zxvf $TAR_FILE >/dev/null
44 rm $TAR_FILE
45 cd /tmp/
46 helm repo remove local
47 helm repo add local http://localhost:18080