From 946886739898c79de15f50eee933a7ef0f5b7861 Mon Sep 17 00:00:00 2001 From: dglFromAtt Date: Thu, 30 Aug 2018 18:09:54 +0000 Subject: [PATCH] Simple initialization calls at deploy Change-Id: I7c1afbaad729280b79598d0c17244806e87619cc Signed-off-by: dglFromAtt Issue-ID: DMAAP-548 --- misc/dmaapbc | 25 ++++++++++++++++++++++++- pom.xml | 2 +- version.properties | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/misc/dmaapbc b/misc/dmaapbc index c65a74b..b473598 100644 --- a/misc/dmaapbc +++ b/misc/dmaapbc @@ -31,7 +31,8 @@ PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/java/jdk/ export PATH CLASSPATH=`echo $APP_ROOT/etc $APP_ROOT/lib/*.jar | tr ' ' ':'` export CLASSPATH -CONTAINER_CONFIG=/opt/app/config/conf +CONFIGMAP_ROOT=/opt/app/config +CONTAINER_CONFIG=$CONFIGMAP_ROOT/conf MAIN=org.onap.dmaap.dbcapi.server.Main @@ -155,11 +156,33 @@ status() { fi } +init() { + if [ ! -d $CONFIGMAP_ROOT ] + then + echo $CONFIGMAP_ROOT does not exist + return + fi + + cd $CONFIGMAP_ROOT + # order is important in this next list + for uri in dmaap dcaeLocations mr_clusters topics feeds + do + if [ -d ${uri} ] + then + for j in `ls ${uri}/*.json` + do + curl -v -X POST -H "Content-Type: application/json" -d @${j} http://dmaap-bc:8080/webapi/${uri} + done + fi + done +} + set -x case "$1" in 'deploy') config start + init wait ;; 'start') diff --git a/pom.xml b/pom.xml index 7536702..b3ad1f5 100644 --- a/pom.xml +++ b/pom.xml @@ -336,7 +336,7 @@ UTF-8 9.3.7.v20160115 0.0.1 - 1.0.16 + 1.0.17 0.7.7.201606060606 3.2 diff --git a/version.properties b/version.properties index 8684d44..abf826c 100644 --- a/version.properties +++ b/version.properties @@ -27,7 +27,7 @@ major=1 minor=0 -patch=16 +patch=17 base_version=${major}.${minor}.${patch} # Release must be completed with git revision # in Jenkins -- 2.16.6