Extend K8S and RIC installation instructions
[it/dep.git] / ric-common / Helm-Credential / bin / install
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 NAMESPACE=$1
19
20 HELMREPO=$2
21
22 HELMREPO_NORMALIZED=${HELMREPO/:/.}
23
24 HELMREPO_NORMALIZED=${HELMREPO_NORMALIZED/\//.}
25
26 HELMUSERNAME=$3
27
28 HELMPASSWORD=$4
29
30 HELMCERTPATH=$5
31
32 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
33
34 cp $HELMCERTPATH $DIR/../helm/helm-credential/cert/tls.crt
35
36
37 source $DIR/../etc/credential.conf
38
39 if [ -z "$RICPLT_RELEASE_NAME" ];then
40    RELEASE_NAME=$helm_release_name
41 else
42    RELEASE_NAME=$RICPLT_RELEASE_NAME
43 fi
44
45 COMMON_CHART_VERSION=$(cat $DIR/../../Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
46 helm package -d /tmp $DIR/../../Common-Template/helm/ric-common
47
48
49 mkdir -p  $DIR/../helm/helm-credential/charts/
50 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/helm-credential/charts/
51
52 helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-cred-${NAMESPACE}-${HELMREPO_NORMALIZED}" --set helmrepo="$HELMREPO" --set helmrepoCredential.user="$DOCKERUSERNAME" --set helmrepoCredential.password="$DOCKERPASSWORD"  $DIR/../helm/helm-credential
53
54
55 rm $DIR/../helm/helm-credential/cert/tls.crt