From 63254ef76799db85cc336223c798447a0eeef966 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Fri, 3 Nov 2017 13:27:01 -0400 Subject: Add dmaap listener docker container Add docker container for DMAAP listener Change-Id: I1e8504d4181223027a90112ec2dc24afcec7b058 Issue-ID: SDNC-165 Signed-off-by: Dan Timoney Former-commit-id: 761e1086b0b2113d7c3dc794069d435054e7d1cf --- .../dmaap-listener/src/main/docker/Dockerfile | 11 +++++ .../src/main/properties/dblib.properties | 38 ++++++++++++++++ .../src/main/properties/dhcpalert.properties | 35 +++++++++++++++ .../properties/dmaap-listener.preferredRoute.txt | 1 + .../src/main/properties/dmaap-listener.properties | 1 + .../src/main/properties/log4j.properties | 37 ++++++++++++++++ .../src/main/scripts/start-dmaap-listener.sh | 51 ++++++++++++++++++++++ 7 files changed, 174 insertions(+) create mode 100644 installation/dmaap-listener/src/main/docker/Dockerfile create mode 100644 installation/dmaap-listener/src/main/properties/dblib.properties create mode 100755 installation/dmaap-listener/src/main/properties/dhcpalert.properties create mode 100755 installation/dmaap-listener/src/main/properties/dmaap-listener.preferredRoute.txt create mode 100755 installation/dmaap-listener/src/main/properties/dmaap-listener.properties create mode 100644 installation/dmaap-listener/src/main/properties/log4j.properties create mode 100644 installation/dmaap-listener/src/main/scripts/start-dmaap-listener.sh (limited to 'installation/dmaap-listener/src/main') diff --git a/installation/dmaap-listener/src/main/docker/Dockerfile b/installation/dmaap-listener/src/main/docker/Dockerfile new file mode 100644 index 00000000..49a70e4f --- /dev/null +++ b/installation/dmaap-listener/src/main/docker/Dockerfile @@ -0,0 +1,11 @@ +# Base ubuntu with added packages needed for open ecomp +FROM onap/ccsdk-ubuntu-image:${ccsdk.distribution.version} +MAINTAINER SDNC Team (onap-sdnc@lists.onap.org) +ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64 +ENV SDNC_CONFIG_DIR /opt/onap/sdnc/data/properties + + +# copy deliverables to opt +COPY opt /opt + + diff --git a/installation/dmaap-listener/src/main/properties/dblib.properties b/installation/dmaap-listener/src/main/properties/dblib.properties new file mode 100644 index 00000000..9506ac8d --- /dev/null +++ b/installation/dmaap-listener/src/main/properties/dblib.properties @@ -0,0 +1,38 @@ +### +# ============LICENSE_START======================================================= +# openECOMP : SDN-C +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +# dblib.properrties +org.onap.ccsdk.sli.dbtype=jdbc + +org.onap.ccsdk.sli.jdbc.hosts=sdnctldb01 +org.onap.ccsdk.sli.jdbc.url=jdbc:mysql://dbhost:3306/sdnctl +org.onap.ccsdk.sli.jdbc.driver=org.mariadb.jdbc.Driver +org.onap.ccsdk.sli.jdbc.database=sdnctl +org.onap.ccsdk.sli.jdbc.user=sdnctl +org.onap.ccsdk.sli.jdbc.password=gamma +org.onap.ccsdk.sli.jdbc.connection.name=sdnctldb01 +org.onap.ccsdk.sli.jdbc.connection.timeout=50 +org.onap.ccsdk.sli.jdbc.request.timeout=100 +org.onap.ccsdk.sli.jdbc.limit.init=10 +org.onap.ccsdk.sli.jdbc.limit.min=10 +org.onap.ccsdk.sli.jdbc.limit.max=20 +org.onap.dblib.connection.recovery=false + diff --git a/installation/dmaap-listener/src/main/properties/dhcpalert.properties b/installation/dmaap-listener/src/main/properties/dhcpalert.properties new file mode 100755 index 00000000..485972a7 --- /dev/null +++ b/installation/dmaap-listener/src/main/properties/dhcpalert.properties @@ -0,0 +1,35 @@ +TransportType=HTTPAAF +Latitude =40.397443 +Longitude =-74.135602 +Version =1.0 +ServiceName =dmaap.onap.org/events +Environment =DEV +Partner = +SubContextPath =/ +Protocol =http +MethodType =GET +username =sdnc +password =Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U +contenttype =application/json +authKey=VCisJnH4Zh772CLs:kcrM5mGlb7a0R+jlPN6gYUCKXrk= +authDate=2016-05-10T13:13:50-0700 +host=dmaap.onap.org:3904 +topic=com.att.instar.edgeRouterStatusChange-v1 +group=sdnc_st +id=sdnc_mtsnjv9sdma01 +timeout=15000 +limit=1000 +filter= +AFT_DME2_EXCHANGE_REQUEST_HANDLERS=com.att.nsa.test.PreferredRouteRequestHandler +AFT_DME2_EXCHANGE_REPLY_HANDLERS=com.att.nsa.test.PreferredRouteReplyHandler +AFT_DME2_REQ_TRACE_ON=true +AFT_ENVIRONMENT=AFTUAT +AFT_DME2_EP_CONN_TIMEOUT=15000 +AFT_DME2_ROUNDTRIP_TIMEOUT_MS=240000 +AFT_DME2_EP_READ_TIMEOUT_MS=50000 +sessionstickinessrequired=NO +DME2preferredRouterFilePath=/opt/sdnc/data/properties/dmaap-listener.preferredRoute.txt +sdnc.odl.user=admin +sdnc.odl.password=admin +sdnc.odl.url-base=https://sdncodl.st.us.aic.cip.att.com:8443/restconf/operations + diff --git a/installation/dmaap-listener/src/main/properties/dmaap-listener.preferredRoute.txt b/installation/dmaap-listener/src/main/properties/dmaap-listener.preferredRoute.txt new file mode 100755 index 00000000..ddd4e86d --- /dev/null +++ b/installation/dmaap-listener/src/main/properties/dmaap-listener.preferredRoute.txt @@ -0,0 +1 @@ +preferredRouteKey=MR1SBSFD_1 \ No newline at end of file diff --git a/installation/dmaap-listener/src/main/properties/dmaap-listener.properties b/installation/dmaap-listener/src/main/properties/dmaap-listener.properties new file mode 100755 index 00000000..0879ac79 --- /dev/null +++ b/installation/dmaap-listener/src/main/properties/dmaap-listener.properties @@ -0,0 +1 @@ +subscriptions=org.onap.ccsdk.sli.northbound.dmaapclient.SdncFlatJsonDmaapConsumer:dhcpalert.properties diff --git a/installation/dmaap-listener/src/main/properties/log4j.properties b/installation/dmaap-listener/src/main/properties/log4j.properties new file mode 100644 index 00000000..3e9e8964 --- /dev/null +++ b/installation/dmaap-listener/src/main/properties/log4j.properties @@ -0,0 +1,37 @@ +### +# ============LICENSE_START======================================================= +# openECOMP : SDN-C +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +log4j.rootLogger=INFO,CONSOLE,LOGFILE + +# CONSOLE is set to be a ConsoleAppender using a PatternLayout. +log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender +log4j.appender.CONSOLE.Threshold=ERROR +log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout +log4j.appender.CONSOLE.layout.ConversionPattern=%p %d{yyyy-MM-dd HH:mm:ss.SSS Z} %c{1} - %m%n + +# LOGFILE is set to be a File appender using a PatternLayout. +log4j.appender.LOGFILE=org.apache.log4j.RollingFileAppender +log4j.appender.LOGFILE.File=/opt/onap/sdnc/dmaap-listener/logs/dmaap-listener.log +log4j.appender.LOGFILE.Append=true +log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout +log4j.appender.LOGFILE.layout.ConversionPattern=%p %d{yyyy-MM-dd HH:mm:ss.SSS Z} %c{1} - %m%n +log4j.appender.LOGFILE.MaxFileSize=10MB +log4j.appender.LOGFILE.MaxBackupIndex=10 diff --git a/installation/dmaap-listener/src/main/scripts/start-dmaap-listener.sh b/installation/dmaap-listener/src/main/scripts/start-dmaap-listener.sh new file mode 100644 index 00000000..06f14058 --- /dev/null +++ b/installation/dmaap-listener/src/main/scripts/start-dmaap-listener.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +### +# ============LICENSE_START======================================================= +# ONAP : SDN-C +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +PROPERTY_DIR=${PROPERTY_DIR:-/opt/onap/sdnc/data/properties} + + +LISTENER=dmaap-listener + +DMAAPLISTENERROOT=${DMAAPLISTENERROOT:-/opt/onap/sdnc/dmaap-listener} +JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-7-oracle} +JAVA_OPTS=${JAVA_OPTS:--Dhttps.protocols=TLSv1.1,TLSv1.2} +JAVA=${JAVA:-${JAVA_HOME}/bin/java} + +# Redirect output from script to $LISTENER.out +if [ ! -d ${DMAAPLISTENERROOT}/logs ] +then + mkdir ${DMAAPLISTENERROOT}/logs +fi +exec >> ${DMAAPLISTENERROOT}/logs/$LISTENER.out +exec 2>&1 + +for file in ${DMAAPLISTENERROOT}/lib/*.jar +do + LISTENERCLASSPATH=$LISTENERCLASSPATH:$file +done + +echo "Starting dmaap-listener" +exec ${JAVA} ${JAVA_OPTS} -jar ${DMAAPLISTENERROOT}/lib/dmaap-listener*.jar -Dlog4j.configuration=file:${PROPERTY_DIR}/log4j.properties -cp ${LISTENERCLASSPATH} + + + -- cgit 1.2.3-korg