blob: ac2ea33ea2270daeb1dc6892dc690df0d85304df (
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
|
#!/bin/bash
echo "WORKSPACE: ${WORKSPACE}"
VERSION="1.0.0-SNAPSHOT"
STAGING="1.0.0-STAGING"
#
# Copy configurations directory
#
CONF_DIR=${WORKSPACE}/vesagent/etc
if [ ! -d "${CONF_DIR}" ]
then
echo "FATAL error cannot locate ${CONF_DIR}"
exit 2
fi
APP_DIR=${WORKSPACE}/vesagent/docker/opt
[ -d "${APP_DIR}/etc" ] && rm -rf "${APP_DIR}/etc"
cp -a ${CONF_DIR} ${APP_DIR}
#
# Copy python scripts directory
#
PY_DIR=${WORKSPACE}/vesagent/py
if [ ! -d "${PY_DIR}" ]
then
echo "FATAL error cannot locate ${PY_DIR}"
exit 2
fi
if [ -d "${PY_DIR}" ]
then
[ -d "${APP_DIR}/py" ] && rm -rf "${APP_DIR}/py"
cp -a ${PY_DIR} ${APP_DIR}
echo "Remove all dummy & test scripts"
rm -f ${APP_DIR}/py/dummy*
rm -f ${APP_DIR}/py/test*
fi
#
# build the docker image. tag and then push to the remote repo
#
BUILD_ARGS="--no-cache"
DOCKER_REPOSITORY="nexus3.onap.org:10003"
ORG="onap"
PROJECT="multicloud"
IMAGE="vio-vesagent"
VERSION="${VERSION//[^0-9.]/}"
IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
if [ $HTTP_PROXY ]; then
BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}"
fi
if [ $HTTPS_PROXY ]; then
BUILD_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}"
fi
function build_image {
# build the image
echo "Start build docker image: ${IMAGE_NAME}"
cd ${WORKSPACE}/vesagent/docker/
docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest -t ${IMAGE_NAME}:${STAGING} .
}
function push_image {
# push the image
echo "Start push docker image: ${IMAGE_NAME}"
docker push ${IMAGE_NAME}:${VERSION}
docker push ${IMAGE_NAME}:latest
docker push ${IMAGE_NAME}:${STAGING}
}
build_image
push_image
|