Update nexus helm charts. Docker and helm repos are exposed using separated ingress...
[it/dep.git] / ric-infra / 10-Nexus / 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
19 OVERRIDEYAML=$1
20
21
22 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
23 source $DIR/../etc/nexus.conf
24
25 if [ -z "$RICINFRA_RELEASE_NAME" ];then
26    RELEASE_NAME=$helm_release_name
27 else
28    RELEASE_NAME=$RICINFRA_RELEASE_NAME
29 fi
30 if [ -z "$RICINFRA_NAMESPACE" ];then
31    NAMESPACE=$namespace
32 else
33    NAMESPACE=$RICINFRA_NAMESPACE
34 fi
35
36
37
38 echo "Deploying nexus repo managers for local docker registry and helm repo."
39 echo "Name Space: $NAMESPACE"
40 echo "Helm Release: $RELEASE_NAME"
41
42
43
44
45 NODENAME=$(kubectl get node | awk 'NR==2{print $1}')
46 kubectl label --overwrite nodes $NODENAME nexus-node=enable
47
48 . ./clear_nexus_data_path
49
50
51
52 COMMON_CHART_VERSION=$(cat $DIR/../../../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
53 helm package -d /tmp $DIR/../../../ric-common/Common-Template/helm/ric-common
54
55
56 mkdir -p  $DIR/../helm/charts/
57 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/charts/
58
59 if [ -z $OVERRIDEYAML ]; then
60 helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
61 else
62 helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
63 fi
64
65
66
67