blob: 784a35e25b79cd352c02832a0b995c60acdc255c [file] [log] [blame]
Fiachra Corcoranbe966552018-08-07 16:58:45 +01001#-------------------------------------------------------------------------------
2# ============LICENSE_START==================================================
3# * org.onap.dmaap
4# * ===========================================================================
5# * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6# * ===========================================================================
7# * Licensed under the Apache License, Version 2.0 (the "License");
8# * you may not use this file except in compliance with the License.
9# * You may obtain a copy of the License at
10# *
11# * http://www.apache.org/licenses/LICENSE-2.0
12# *
13# * Unless required by applicable law or agreed to in writing, software
14# * distributed under the License is distributed on an "AS IS" BASIS,
15# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# * See the License for the specific language governing permissions and
17# * limitations under the License.
18# * ============LICENSE_END====================================================
19# *
20# * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21# *
22#-------------------------------------------------------------------------------
23#
24# Configuration parameters fixed at startup for the DataRouter node
25#
26# URL to retrieve dynamic configuration
27#
28#ProvisioningURL: ${DRTR_PROV_INTURL}
efiacor7b9a0872019-08-28 21:20:22 +000029ProvisioningURL=https://{{ .Values.global.dmaapDrProvName }}:{{ .Values.global.dmaapDrProvExtPort2 }}/internal/prov
Fiachra Corcoranbe966552018-08-07 16:58:45 +010030
31#
32# URL to upload PUB/DEL/EXP logs
33#
34#LogUploadURL: ${DRTR_LOG_URL}
efiacor7b9a0872019-08-28 21:20:22 +000035LogUploadURL=https://{{ .Values.global.dmaapDrProvName }}:{{ .Values.global.dmaapDrProvExtPort2 }}/internal/logs
Fiachra Corcoranbe966552018-08-07 16:58:45 +010036
37#
38# The port number for http as seen within the server
39#
40#IntHttpPort: ${DRTR_NODE_INTHTTPPORT:-8080}
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010041IntHttpPort={{ include "common.getPort" (dict "global" . "name" "api" "getPlain" true) }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010042#
43# The port number for https as seen within the server
44#
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010045IntHttpsPort={{ include "common.getPort" (dict "global" . "name" "api") }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010046#
47# The external port number for https taking port mapping into account
48#
49ExtHttpsPort=443
50#
51# The minimum interval between fetches of the dynamic configuration
52# from the provisioning server
53#
54MinProvFetchInterval=10000
55#
56# The minimum interval between saves of the redirection data file
57#
58MinRedirSaveInterval=10000
59#
60# The path to the directory where log files are stored
61#
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010062LogDir={{ .Values.persistence.event.path }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010063#
64# The retention interval (in days) for log files
65#
66LogRetention=30
67#
68# The path to the directories where data and meta data files are stored
69#
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +010070SpoolDir={{ .Values.persistence.spool.path }}
Fiachra Corcoranbe966552018-08-07 16:58:45 +010071#
72# The path to the redirection data file
73#
efiacore62958b2019-09-27 16:54:36 +010074RedirectionFile = etc/redirections.dat
Fiachra Corcoranbe966552018-08-07 16:58:45 +010075#
76# The type of keystore for https
efiacore62958b2019-09-27 16:54:36 +010077KeyStoreType = PKCS12
Fiachra Corcoranbe966552018-08-07 16:58:45 +010078#
79# The type of truststore for https
efiacore62958b2019-09-27 16:54:36 +010080TrustStoreType = jks
Fiachra Corcoranbe966552018-08-07 16:58:45 +010081#
82# The path to the file used to trigger an orderly shutdown
efiacore62958b2019-09-27 16:54:36 +010083QuiesceFile = etc/SHUTDOWN
Fiachra Corcoranbe966552018-08-07 16:58:45 +010084#
85# The key used to generate passwords for node to node transfers
efiacore62958b2019-09-27 16:54:36 +010086NodeAuthKey = Node123!
efiacoreabb6522019-04-08 09:46:09 +000087#
88# DR_NODE DEFAULT ENABLED TLS PROTOCOLS
89NodeHttpsProtocols = TLSv1.1|TLSv1.2
90#
91# AAF type to generate permission string
92AAFType = org.onap.dmaap-dr.feed
93#
94# AAF default instance to generate permission string - default should be legacy
95AAFInstance = legacy
96#
97# AAF action to generate permission string - default should be publish
98AAFAction = publish
99#
efiacoreabb6522019-04-08 09:46:09 +0000100# AAF CADI enabled flag
101CadiEnabled = false
efiacore62958b2019-09-27 16:54:36 +0100102#
103# AAF Props file path
Sylvain Desbureauxf7768e82020-03-23 16:48:20 +0100104AAFPropsFilePath = {{ .Values.aafConfig.credsPath }}/org.onap.dmaap-dr.props