Merge "Update a1 container."
[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
31 # Namespace configuration
32 if [ -z "$RICPLT_NAMESPACE" ];then
33    PLT_NAMESPACE=$plt_namespace
34 else
35    PLT_NAMESPACE=$RICPLT_NAMESPACE
36 fi
37 if [ -z "$RICXAPP_NAMESPACE" ];then
38    XAPP_NAMESPACE=$xapp_namespace
39 else
40    XAPP_NAMESPACE=$RICXAPP_NAMESPACE
41 fi
42 if [ -z "$RICAUX_NAMESPACE" ];then
43    AUX_NAMESPACE=$aux_namespace
44 else
45    AUX_NAMESPACE=$RICAUX_NAMESPACE
46 fi
47 if [ -z "$RICINFRA_NAMESPACE" ];then
48    INFRA_NAMESPACE=$infra_namespace
49 else
50    INFRA_NAMESPACE=$RICINFRA_NAMESPACE
51 fi
52
53 if [ -z "$RIC_COMMON_OVERRIDE" ];then
54    COMMON_OVERRIDE="--set global.namespace.platform=$PLT_NAMESPACE --set global.namespace.xapp=$XAPP_NAMESPACE --set global.namespace.aux=$AUX_NAMESPACE --set global.namespace.infra=$INFRA_NAMESPACE"
55 else
56    COMMON_OVERRIDE=$RIC_COMMON_OVERRIDE
57 fi
58
59 echo "Deploying nexus repo managers for local docker registry and helm repo."
60 echo "Helm Release: $RELEASE_NAME"
61
62
63
64
65 NODENAME=$(kubectl get node | awk 'NR==2{print $1}')
66 kubectl label --overwrite nodes $NODENAME nexus-node=enable
67
68 . "$DIR/clear_nexus_data_path"
69
70
71
72 COMMON_CHART_VERSION=$(cat $DIR/../../../ric-common/Common-Template/helm/ric-common/Chart.yaml | grep version | awk '{print $2}')
73 helm package -d /tmp $DIR/../../../ric-common/Common-Template/helm/ric-common
74
75
76 mkdir -p  $DIR/../helm/charts/
77 mkdir -p /tmp/nexus3-data
78
79 cp /tmp/ric-common-$COMMON_CHART_VERSION.tgz $DIR/../helm/charts/
80
81 if [ -z $OVERRIDEYAML ]; then
82 helm install --namespace $INFRA_NAMESPACE --name "${RELEASE_NAME}-nexus" $COMMON_OVERRIDE $DIR/../helm
83 else
84 helm install -f $OVERRIDEYAML --namespace $INFRA_NAMESPACE --name "${RELEASE_NAME}-nexus" $COMMON_OVERRIDE $DIR/../helm
85 fi
86
87
88
89