blob: 08939084aaadd2f0d354aee324ad5b041f4aec44 (
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
|
#!/bin/bash
#
#
# 1 fetch DCAE Controller service manager
# 2 build the docker imagei with both service manager and ves collector
# 3 tag and then push to the remote repo
#
#
# !!! make sure the yaml jjb file includes docker-login as a builder
# before calling this script
# io registry DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \
# release registry nexus3.openecomp.org:10002 \
# snapshot registry nexus3.openecomp.org:10003"
# 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}"
#
# 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"
[ ! -d "$LOGS" ] && mkdir -p "$LOGS"
echo 10.0.4.102 $(hostname).dcae.simpledemo.openecomp.org >> /etc/hosts
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/SEC
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='dcae-controller-common-event'
TAG='1.0.0'
LFQI="${IMAGE}:${TAG}"
BUILD_PATH="${WORKSPACE}/target/stage"
# build a docker image
docker build --rm -t "${LFQI}" "${BUILD_PATH}"
#
# push the image
#
# io registry DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \
# release registry nexus3.openecomp.org:10002 \
# snapshot registry nexus3.openecomp.org:10003"
|