09eafe2f2d1b09aa74071cb0aa80338eb0ef7869
[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 helm plugin install --version v0.9.0 https://github.com/chartmuseum/helm-push.git
39 helm repo remove local
40 helm repo add local http://localhost:18080