blob: a56de3cd3b152f9ef2fc96559be281540f170e34 [file] [log] [blame]
Jakub Latusek67f4e8d2020-10-21 13:36:29 +02001{{/*
Fiachra Corcoranbe966552018-08-07 16:58:45 +01002#-------------------------------------------------------------------------------
3# ============LICENSE_START==================================================
4# * org.onap.dmaap
5# * ===========================================================================
6# * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7# * ===========================================================================
8# * Licensed under the Apache License, Version 2.0 (the "License");
9# * you may not use this file except in compliance with the License.
10# * You may obtain a copy of the License at
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +010011# *
Fiachra Corcoranbe966552018-08-07 16:58:45 +010012# * http://www.apache.org/licenses/LICENSE-2.0
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +010013# *
Fiachra Corcoranbe966552018-08-07 16:58:45 +010014# * Unless required by applicable law or agreed to in writing, software
15# * distributed under the License is distributed on an "AS IS" BASIS,
16# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# * See the License for the specific language governing permissions and
18# * limitations under the License.
19# * ============LICENSE_END====================================================
20# *
21# * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22# *
23#-------------------------------------------------------------------------------
Jakub Latusek67f4e8d2020-10-21 13:36:29 +020024*/}}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010025
26
27#Jetty Server properties
efiacor2123fec2022-12-09 13:40:55 +000028org.onap.dmaap.datarouter.provserver.http.port = {{ .Values.containerPort }}
econwar4d9f35f2019-04-16 08:02:13 +000029org.onap.dmaap.datarouter.provserver.https.relaxation = true
Fiachra Corcoranbe966552018-08-07 16:58:45 +010030
efiacor2123fec2022-12-09 13:40:55 +000031org.onap.dmaap.datarouter.provserver.tlsenabled = false
32org.onap.dmaap.datarouter.nodeserver.http.port = 8080
efiacore62958b2019-09-27 16:54:36 +010033
Fiachra Corcoranbe966552018-08-07 16:58:45 +010034org.onap.dmaap.datarouter.provserver.accesslog.dir = /opt/app/datartr/logs
35org.onap.dmaap.datarouter.provserver.spooldir = /opt/app/datartr/spool
36org.onap.dmaap.datarouter.provserver.dbscripts = /opt/app/datartr/etc/misc
37org.onap.dmaap.datarouter.provserver.logretention = 30
38
Fiachra Corcoranbe966552018-08-07 16:58:45 +010039# Database access
40org.onap.dmaap.datarouter.db.driver = org.mariadb.jdbc.Driver
Mahmoud Abdelhamid7fc530c2021-09-15 20:27:19 +020041org.onap.dmaap.datarouter.db.url = jdbc:mariadb://{{ include "common.mariadbService" . }}:{{ include "common.mariadbPort" . }}/{{index .Values "mariadb-galera" "db" "name"}}
Krzysztof Opasiake55b4d52020-02-07 22:54:20 +010042org.onap.dmaap.datarouter.db.login = ${DB_USERNAME}
43org.onap.dmaap.datarouter.db.password = ${DB_PASSWORD}
efiacoreabb6522019-04-08 09:46:09 +000044