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 COMMON_CHART_VERSION=$(cat $DIR/../../../ric-platform/50-RIC-Platform/helm/common/Chart.yaml | grep version | awk '{print $2}')
61 helm package -d /tmp $DIR/../../../ric-platform/50-RIC-Platform/helm/common
64 mkdir -p $DIR/../helm/charts/
65 cp /tmp/common-$COMMON_CHART_VERSION.tgz $DIR/../helm/charts/
67 if [ -z $OVERRIDEYAML ]; then
68 helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
70 helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../helm
73 NEXUS_POD_NAME=$(kubectl get pod -n $NAMESPACE | grep nexus | grep ContainerCreating | awk '{print $1}')
77 echo "Waiting Nexus to be ready."
82 IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
85 while [[ -z $IS_NEXUS_READY ]]; do
86 echo -e "\033[2AWaiting Nexus to be ready."
88 PROGRESS=$(printf "%0.s-" $(seq 1 $COUNTER))
89 echo -e "\033[1A$PROGRESS"
92 COUNTER=$((COUNTER+1))
93 if [ $COUNTER -gt 5 ]; then
97 IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
105 DOCKERPORT=$(cat $DIR/../helm/templates/deployment.yaml | awk '/.*- name: docker.*/{getline; print $2}')
108 DOCKERREPOSCRIPT="{\"name\":\"create_docker_repo\",\
109 \"type\":\"groovy\",\
110 \"content\":\"repository.createDockerHosted('docker.snapshot',\
111 $DOCKERPORT, null, 'default', false, true)\"}"
113 echo $DOCKERREPOSCRIPT
115 # This line uses the default admin password
116 curl -u admin:admin123 -X POST -H "Content-Type: application/json" --data "$DOCKERREPOSCRIPT" http://nexus.$HOSTPOSTFIX:$INGRESS_PORT_NEXUS/service/rest/v1/script
118 curl -u admin:admin123 -X POST -H 'Content-Type: text/plain' -H 'Accept: application/json' http://nexus.$HOSTPOSTFIX:$INGRESS_PORT_NEXUS/service/rest/v1/script/create_docker_repo/run