From 32a106d589916760dd2232c6a8570aa57c0ee893 Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Wed, 11 Oct 2017 16:19:45 +0800 Subject: Add staging docker images for OpenStack plugins Add staging docker images and enable logger of submodules Change-Id: Ib64f30ab50002dca67c6835866ffc46fc83d7934 Issue-Id: MULTICLOUD-110 Signed-off-by: Bin Yang --- newton/docker/build_image.sh | 4 +++- newton/pom.xml | 6 ++++++ ocata/docker/build_image.sh | 4 +++- ocata/ocata/settings.py | 5 +++++ ocata/pom.xml | 6 ++++++ pom.xml | 15 +++++++++++---- windriver/docker/build_image.sh | 4 +++- windriver/pom.xml | 6 ++++++ windriver/titanium_cloud/settings.py | 5 +++++ 9 files changed, 48 insertions(+), 7 deletions(-) diff --git a/newton/docker/build_image.sh b/newton/docker/build_image.sh index fd8fb8cd..203283d1 100644 --- a/newton/docker/build_image.sh +++ b/newton/docker/build_image.sh @@ -7,6 +7,7 @@ cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" ORG="onap" VERSION="1.0.0-SNAPSHOT" +STAGING="1.0.0-STAGING" PROJECT="multicloud" IMAGE="openstack-newton" DOCKER_REPOSITORY="nexus3.onap.org:10003" @@ -20,12 +21,13 @@ if [ $HTTPS_PROXY ]; then fi function build_image { - docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest . + docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest -t ${IMAGE_NAME}:${STAGING} . } function push_image { docker push ${IMAGE_NAME}:${VERSION} docker push ${IMAGE_NAME}:latest + docker push ${IMAGE_NAME}:${STAGING} } build_image diff --git a/newton/pom.xml b/newton/pom.xml index 555f3b53..ceff90cc 100644 --- a/newton/pom.xml +++ b/newton/pom.xml @@ -28,6 +28,12 @@ pom multicloud/openstack/newton multicloud for openstack newton + + UTF-8 + UTF-8 + UTF-8 + https://nexus.onap.org + diff --git a/ocata/docker/build_image.sh b/ocata/docker/build_image.sh index b0d72264..e8bfdf2c 100644 --- a/ocata/docker/build_image.sh +++ b/ocata/docker/build_image.sh @@ -7,6 +7,7 @@ cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" ORG="onap" VERSION="1.0.0-SNAPSHOT" +STAGING="1.0.0-STAGING" PROJECT="multicloud" IMAGE="openstack-ocata" DOCKER_REPOSITORY="nexus3.onap.org:10003" @@ -20,12 +21,13 @@ if [ $HTTPS_PROXY ]; then fi function build_image { - docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest . + docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest -t ${IMAGE_NAME}:${STAGING} . } function push_image { docker push ${IMAGE_NAME}:${VERSION} docker push ${IMAGE_NAME}:latest + docker push ${IMAGE_NAME}:${STAGING} } build_image diff --git a/ocata/ocata/settings.py b/ocata/ocata/settings.py index 1e8473b7..3cc4caa9 100644 --- a/ocata/ocata/settings.py +++ b/ocata/ocata/settings.py @@ -99,6 +99,11 @@ LOGGING = { 'level': 'DEBUG', 'propagate': False }, + 'newton': { + 'handlers': ['ocata_handler'], + 'level': 'DEBUG', + 'propagate': False + }, } } diff --git a/ocata/pom.xml b/ocata/pom.xml index bd703378..58179fd9 100644 --- a/ocata/pom.xml +++ b/ocata/pom.xml @@ -33,6 +33,12 @@ zip + + UTF-8 + UTF-8 + UTF-8 + https://nexus.onap.org + diff --git a/pom.xml b/pom.xml index ccfb334f..463b4a08 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,14 @@ 1.0.0-SNAPSHOT multicloud-openstack pom - + multicloud openstack + + UTF-8 + UTF-8 + UTF-8 + https://nexus.onap.org + + newton ocata @@ -57,15 +64,15 @@ 1.8 1.8 - - + + org.apache.maven.plugins maven-deploy-plugin 2.7 2 - + diff --git a/windriver/docker/build_image.sh b/windriver/docker/build_image.sh index cc32212e..85e80c22 100644 --- a/windriver/docker/build_image.sh +++ b/windriver/docker/build_image.sh @@ -7,6 +7,7 @@ cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" ORG="onap" VERSION="1.0.0-SNAPSHOT" +STAGING="1.0.0-STAGING" PROJECT="multicloud" IMAGE="openstack-windriver" DOCKER_REPOSITORY="nexus3.onap.org:10003" @@ -20,12 +21,13 @@ if [ $HTTPS_PROXY ]; then fi function build_image { - docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest . + docker build ${BUILD_ARGS} -t ${IMAGE_NAME}:${VERSION} -t ${IMAGE_NAME}:latest -t ${IMAGE_NAME}:${STAGING} . } function push_image { docker push ${IMAGE_NAME}:${VERSION} docker push ${IMAGE_NAME}:latest + docker push ${IMAGE_NAME}:${STAGING} } build_image diff --git a/windriver/pom.xml b/windriver/pom.xml index 6e6c9d00..9e468219 100644 --- a/windriver/pom.xml +++ b/windriver/pom.xml @@ -33,6 +33,12 @@ zip + + UTF-8 + UTF-8 + UTF-8 + https://nexus.onap.org + diff --git a/windriver/titanium_cloud/settings.py b/windriver/titanium_cloud/settings.py index 393f994e..8d2684e7 100644 --- a/windriver/titanium_cloud/settings.py +++ b/windriver/titanium_cloud/settings.py @@ -99,6 +99,11 @@ LOGGING = { 'level': 'DEBUG', 'propagate': False }, + 'newton': { + 'handlers': ['titanium_cloud_handler'], + 'level': 'DEBUG', + 'propagate': False + }, } } -- cgit 1.2.3-korg