Update helm-push install
[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
26 #Helm package
27 wget https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz
28 mv helm-v3.5.4-linux-amd64.tar.gz /tmp/helm-v3.5.4-linux-amd64.tar.gz
29 cd /tmp/
30 tar xvfz /tmp/helm-v3.5.4-linux-amd64.tar.gz
31 mv linux-amd64/helm /usr/local/bin/helm
32 apt-get install git -y
33
34
35 echo "Checking HELM ..."
36 helm version
37
38 TAR_VERSION=0.9.0
39 echo "Downloading and installing helm-push v${TAR_VERSION} ..."
40 TAR_FILE=helm-push_${TAR_VERSION}_linux_amd64.tar.gz
41 HELM_PLUGINS=$(helm env HELM_PLUGINS)
42 mkdir -p $HELM_PLUGINS/helm-push
43 cd $HELM_PLUGINS/helm-push
44 wget https://nexus.o-ran-sc.org/service/local/repositories/images/content/$TAR_FILE
45 tar zxvf $TAR_FILE >/dev/null
46 rm $TAR_FILE
47 cd /tmp/
48 helm repo remove local
49 helm repo add local http://localhost:18080