summaryrefslogtreecommitdiffstats
path: root/ocata/docker/build_image.sh
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-05-10 15:47:30 -0700
committerVictor Morales <victor.morales@intel.com>2018-05-11 10:05:45 -0700
commiteb60ad19e55a1ff53ca884d15c81f018ad7431cc (patch)
treecc3c8e421cb806f5c62d1c78d63a476857e164f9 /ocata/docker/build_image.sh
parent408bbd742c250bf66611c577eb3af4496b70d525 (diff)
Add console logging output
The log.yml is configured to place the log entries in a file to be collected by the ONAP logging project. But for containerized deployments, it's better to place then into the standard output. This commit adds the console log handler. Change-Id: If325780c1739490adeb731dfbd13e2f1b8a9e3f4 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: MULTICLOUD-214
Diffstat (limited to 'ocata/docker/build_image.sh')
-rw-r--r--ocata/docker/build_image.sh8
1 files changed, 2 insertions, 6 deletions
diff --git a/ocata/docker/build_image.sh b/ocata/docker/build_image.sh
index c85989d0..8e55f89f 100644
--- a/ocata/docker/build_image.sh
+++ b/ocata/docker/build_image.sh
@@ -5,13 +5,9 @@ echo "DOCKER_BUILD_DIR=${DOCKER_BUILD_DIR}"
cd ${DOCKER_BUILD_DIR}
BUILD_ARGS="--no-cache"
-ORG="onap"
VERSION="1.1.2-SNAPSHOT"
STAGING="1.1.2-STAGING"
-PROJECT="multicloud"
-IMAGE="openstack-ocata"
-DOCKER_REPOSITORY="nexus3.onap.org:10003"
-IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
+IMAGE_NAME="${DOCKER_REPOSITORY:-"nexus3.onap.org:10003"}/${ORG:-"onap"}/${PROJECT:-"multicloud"}/${IMAGE:-"openstack-ocata"}"
if [ $HTTP_PROXY ]; then
BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}"
@@ -31,4 +27,4 @@ function push_image {
}
build_image
-push_image \ No newline at end of file
+push_image