18102f807492981dd62ad7a90483c93246c01801
[it/dep.git] / 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/../charts/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 COMMON_CHART_VERSION=$(cat $DIR/../../50-RIC-Platform/charts/common/Chart.yaml | grep version | awk '{print $2}')
61 helm package -d /tmp $DIR/../../50-RIC-Platform/charts/common
62
63 cp /tmp/common-$COMMON_CHART_VERSION.tgz $DIR/../charts/charts/
64
65 if [ -z $OVERRIDEYAML ]; then
66 helm install --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../charts
67 else
68 helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-nexus" $DIR/../charts
69 fi
70
71 NEXUS_POD_NAME=$(kubectl get pod -n $NAMESPACE | grep nexus | grep ContainerCreating | awk '{print $1}')
72
73
74
75 echo "Waiting Nexus to be ready."
76 echo " "
77
78 sleep 10
79
80 IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
81
82 COUNTER=1
83 while [[ -z $IS_NEXUS_READY ]]; do
84         echo -e "\033[2AWaiting Nexus to be ready."
85         echo -e "\033[2K"
86         PROGRESS=$(printf "%0.s-" $(seq 1 $COUNTER))
87         echo -e "\033[1A$PROGRESS"
88
89
90         COUNTER=$((COUNTER+1))
91         if [ $COUNTER -gt 5 ]; then
92                 COUNTER=1
93         fi
94
95         IS_NEXUS_READY=$(kubectl logs -n $NAMESPACE $NEXUS_POD_NAME | grep "Started Sonatype Nexus OSS")
96
97         sleep 5
98 done
99
100 echo $IS_NEXUS_READY
101
102
103 DOCKERPORT=$(cat $DIR/../charts/templates/deployment.yaml  | awk '/.*- name: docker.*/{getline; print $2}')
104
105
106 DOCKERREPOSCRIPT="{\"name\":\"create_docker_repo\",\
107     \"type\":\"groovy\",\
108     \"content\":\"repository.createDockerHosted('docker.snapshot',\
109     $DOCKERPORT, null, 'default', false, true)\"}"
110
111 echo $DOCKERREPOSCRIPT
112
113 # This line uses the default admin password
114 curl -u admin:admin123 -X POST -H "Content-Type: application/json" --data "$DOCKERREPOSCRIPT" http://nexus.$HOSTPOSTFIX:$INGRESS_PORT_NEXUS/service/rest/v1/script
115
116 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
117
118
119
120
121
122