2 ################################################################################
3 # Copyright (c) 2019 AT&T Intellectual Property. #
4 # Copyright (c) 2019 Nokia. #
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 #
10 # http://www.apache.org/licenses/LICENSE-2.0 #
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 ################################################################################
22 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
23 source $DIR/../etc/nexus.conf
25 if [ -z "$RICINFRA_RELEASE_NAME" ];then
26 RELEASE_NAME=$helm_release_name
28 RELEASE_NAME=$RICINFRA_RELEASE_NAME
30 if [ -z "$RICINFRA_NAMESPACE" ];then
33 NAMESPACE=$RICINFRA_NAMESPACE
35 if [ -z "$INGRESS_PORT" ];then
36 INGRESS_PORT_NEXUS=$ingress_port
38 INGRESS_PORT_NEXUS=$INGRESS_PORT
43 echo "Deploying nexus repo managers for local docker registry and helm repo."
44 echo "Name Space: $NAMESPACE"
45 echo "Helm Release: $RELEASE_NAME"
47 HOSTPOSTFIX=$(cat $DIR/../helm/values.yaml | grep hostpostfix | awk '{print $2}')
50 echo "****************************************************************************************************************"
52 echo "****************************************************************************************************************"
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 "****************************************************************************************************************"
60 . ./deploy_nexus_data $OVERRIDEYAML
64 NODENAME=$(kubectl get node | awk 'NR==2{print $1}')
65 kubectl label --overwrite nodes $NODENAME nexus-node=enable
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
76 mkdir -p $DIR/../helm/charts/
77 cp /tmp/common-$COMMON_CHART_VERSION.tgz $DIR/../helm/charts/
79 if [ -z $OVERRIDEYAML ]; then
80 helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
82 helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
87 NEXUS_POD_NAME=$(kubectl get pod -n $NAMESPACE | grep nexus | grep -v "Terminating" | awk '{print $1}')
90 echo "Waiting Nexus to be ready."
95 IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
98 while [[ -z $IS_NEXUS_READY ]]; do
99 echo -e "\033[2AWaiting Nexus to be ready."
101 PROGRESS=$(printf "%0.s-" $(seq 1 $COUNTER))
102 echo -e "\033[1A$PROGRESS"
105 COUNTER=$((COUNTER+1))
106 if [ $COUNTER -gt 5 ]; then
110 IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
118 . ./change_password $OVERRIDEYAML