Add new configuration and scripts to automate the credential creation and passing...
[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 if [ -z "$INGRESS_PORT" ];then
36    INGRESS_PORT_NEXUS=$ingress_port
37 else
38    INGRESS_PORT_NEXUS=$INGRESS_PORT
39 fi
40
41
42
43 echo "Deploying nexus repo managers for local docker registry and helm repo."
44 echo "Name Space: $NAMESPACE"
45 echo "Helm Release: $RELEASE_NAME"
46
47 HOSTPOSTFIX=$(cat $DIR/../helm/values.yaml  | grep hostpostfix | awk '{print $2}')
48
49
50 echo "****************************************************************************************************************"
51 echo "                                                     WARNING                                                    "
52 echo "****************************************************************************************************************"
53
54 echo "Nexus is deployed using default admin password. It is not for production deployment."
55 echo "If you want to secure the repositories, you should change the admin password immediately."
56 echo "You can access this nexus here: http://nexus.$HOSTPOSTFIX:$INGRESS_PORT_NEXUS"
57 echo "If nexus.$HOSTPOSTFIX is not resolved by your DNS server, please add an entry in your /etc/hosts file."
58 echo "****************************************************************************************************************"
59
60 . ./deploy_nexus_data $OVERRIDEYAML
61
62
63
64 NODENAME=$(kubectl get node | awk 'NR==2{print $1}')
65 kubectl label --overwrite nodes $NODENAME nexus-node=enable
66
67
68
69
70
71
72 COMMON_CHART_VERSION=$(cat $DIR/../../../ric-platform/50-RIC-Platform/helm/common/Chart.yaml | grep version | awk '{print $2}')
73 helm package -d /tmp $DIR/../../../ric-platform/50-RIC-Platform/helm/common
74
75
76 mkdir -p  $DIR/../helm/charts/
77 cp /tmp/common-$COMMON_CHART_VERSION.tgz $DIR/../helm/charts/
78
79 if [ -z $OVERRIDEYAML ]; then
80 helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
81 else
82 helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
83 fi
84
85
86
87 NEXUS_POD_NAME=$(kubectl get pod -n $NAMESPACE | grep nexus | grep -v "Terminating" | awk '{print $1}')
88
89
90 echo "Waiting Nexus to be ready."
91 echo " "
92
93 sleep 10
94
95 IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
96
97 COUNTER=1
98 while [[ -z $IS_NEXUS_READY ]]; do
99         echo -e "\033[2AWaiting Nexus to be ready."
100         echo -e "\033[2K"
101         PROGRESS=$(printf "%0.s-" $(seq 1 $COUNTER))
102         echo -e "\033[1A$PROGRESS"
103
104
105         COUNTER=$((COUNTER+1))
106         if [ $COUNTER -gt 5 ]; then
107                 COUNTER=1
108         fi
109
110         IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
111
112         sleep 5
113 done
114
115 echo $IS_NEXUS_READY
116
117
118 . ./change_password $OVERRIDEYAML
119
120
121