blob: b81fb07d81d3d764849e7e1de33236fa4bebd68a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
#!/bin/bash
###
# ============LICENSE_START=======================================================
# PROJECT
# ================================================================================
# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============LICENSE_END=========================================================
###
#
#
# 1 build the docker image with both service manager and ves collector
# 2 tag and then push to the remote repo if not verify
#
phase=$1
VERSION=$(xpath -e '//project/version/text()' 'pom.xml')
VERSION=${VERSION//\"/}
EXT=$(echo "$VERSION" | rev | cut -s -f1 -d'-' | rev)
if [ -z "$EXT" ]; then
EXT="STAGING"
fi
case $phase in
verify|merge)
if [ "$EXT" != 'SNAPSHOT' ]; then
echo "$phase job only takes SNAPSHOT version, got \"$EXT\" instead"
exit 1
fi
;;
release)
if [ ! -z "$EXT" ] && [ "$EXT" != 'STAGING' ]; then
echo "$phase job only takes STAGING or pure numerical version, got \"$EXT\" instead"
exit 1
fi
;;
*)
echo "Unknown phase \"$phase\""
exit 1
esac
echo "Running \"$phase\" job for version \"$VERSION\""
# DCAE Controller service manager for VES collector
DCM_AR="${WORKSPACE}/manager.zip"
if [ ! -f "${DCM_AR}" ]
then
echo "FATAL error cannot locate ${DCM_AR}"
exit 2
fi
# unarchive the service manager
TARGET="${WORKSPACE}/target"
STAGE="${TARGET}/stage"
DCM_DIR="${STAGE}/opt/app/manager"
[ ! -d "${DCM_DIR}" ] && mkdir -p "${DCM_DIR}"
unzip -qo -d "${DCM_DIR}" "${DCM_AR}"
# unarchive the collector
AR=${WORKSPACE}/target/VESCollector-${VERSION}-bundle.tar.gz
APP_DIR=${STAGE}/opt/app/VESCollector
[ -d "${STAGE}/opt/app/VESCollector-${VERSION}" ] && rm -rf "${STAGE}/opt/app/VESCollector-${VERSION}"
[ ! -f "${APP_DIR}" ] && mkdir -p "${APP_DIR}"
gunzip -c "${AR}" | tar xvf - -C "${APP_DIR}" --strip-components=1
#
# generate the manager start-up.sh
#
## [ -f "${DCM_DIR}/start-manager.sh" ] && exit 0
cat <<EOF > "${DCM_DIR}/start-manager.sh"
#!/bin/bash
MAIN=org.openecomp.dcae.controller.service.standardeventcollector.servers.manager.DcaeControllerServiceStandardeventcollectorManagerServer
ACTION=start
WORKDIR=/opt/app/manager
LOGS=\$WORKDIR/logs
mkdir -p \$LOGS
cd \$WORKDIR
echo \$COLLECTOR_IP \$(hostname).dcae.simpledemo.openecomp.org >> /etc/hosts
if [ ! -e config ]; then
echo no configuration directory setup: \$WORKDIR/config
exit 1
fi
exec java -cp ./config:./lib:./lib/*:./bin \$MAIN \$ACTION > logs/manager.out 2>logs/manager.err
EOF
chmod 775 "${DCM_DIR}/start-manager.sh"
#
# generate docker file
#
cat <<EOF > "${STAGE}/Dockerfile"
FROM ubuntu:14.04
MAINTAINER dcae@lists.openecomp.org
WORKDIR /opt/app/manager
ENV HOME /opt/app/VESCollector
ENV JAVA_HOME /usr
RUN apt-get update && apt-get install -y \
bc \
curl \
telnet \
vim \
netcat \
openjdk-7-jdk
COPY opt /opt
EXPOSE 9999
CMD [ "/opt/app/manager/start-manager.sh" ]
EOF
#
# build the docker image. tag and then push to the remote repo
#
IMAGE='openecomp/dcae-collector-common-event'
VERSION="${VERSION//[^0-9.]/}"
VERSION2=$(echo "$VERSION" | cut -f1-2 -d'.')
TIMESTAMP="-$(date +%C%y%m%dT%H%M%S)"
LFQI="${IMAGE}:${VERSION}${TIMESTAMP}"
BUILD_PATH="${WORKSPACE}/target/stage"
# build a docker image
echo docker build --rm -t "${LFQI}" "${BUILD_PATH}"
docker build --rm -t "${LFQI}" "${BUILD_PATH}"
case $phase in
verify)
exit 0
;;
esac
#
# push the image
#
# io registry DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \
# release registry nexus3.openecomp.org:10002 \
# snapshot registry nexus3.openecomp.org:10003"
# staging registry nexus3.openecomp.org:10004"
case $EXT in
SNAPSHOT|snapshot)
#REPO='nexus3.openecomp.org:10003'
REPO='nexus3.onap.org:10003'
EXT="-SNAPSHOT"
;;
STAGING|staging)
#REPO='nexus3.openecomp.org:10003'
REPO='nexus3.onap.org:10003'
EXT="-STAGING"
;;
"")
#REPO='nexus3.openecomp.org:10002'
REPO='nexus3.onap.org:10002'
EXT=""
echo "version has no extension, intended for release, in \"$phase\" phase. donot do release here"
exit 1
;;
*)
echo "Unknown extension \"$EXT\" in version"
exit 1
;;
esac
OLDTAG="${LFQI}"
PUSHTAGS="${REPO}/${IMAGE}:${VERSION}${EXT}${TIMESTAMP} ${REPO}/${IMAGE}:latest ${REPO}/${IMAGE}:${VERSION2}${EXT}-latest"
for NEWTAG in ${PUSHTAGS}
do
echo "tagging ${OLDTAG} to ${NEWTAG}"
docker tag "${OLDTAG}" "${NEWTAG}"
echo "pushing ${NEWTAG}"
docker push "${NEWTAG}"
OLDTAG="${NEWTAG}"
done
|