From eb60ad19e55a1ff53ca884d15c81f018ad7431cc Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 10 May 2018 15:47:30 -0700 Subject: 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 Issue-ID: MULTICLOUD-214 --- ocata/docker/build_image.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ocata/docker/build_image.sh') 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 -- cgit 1.2.3-korg