Jakub Latusek | 67f4e8d | 2020-10-21 13:36:29 +0200 | [diff] [blame^] | 1 | {{/* |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 2 | #------------------------------------------------------------------------------- |
| 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 |
| 11 | # * |
| 12 | # * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # * |
| 14 | # * 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 | #------------------------------------------------------------------------------- |
| 24 | # |
| 25 | # Configuration parameters fixed at startup for the DataRouter node |
| 26 | # |
| 27 | # URL to retrieve dynamic configuration |
| 28 | # |
| 29 | #ProvisioningURL: ${DRTR_PROV_INTURL} |
Jakub Latusek | 67f4e8d | 2020-10-21 13:36:29 +0200 | [diff] [blame^] | 30 | */}} |
efiacor | 7b9a087 | 2019-08-28 21:20:22 +0000 | [diff] [blame] | 31 | ProvisioningURL=https://{{ .Values.global.dmaapDrProvName }}:{{ .Values.global.dmaapDrProvExtPort2 }}/internal/prov |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 32 | |
| 33 | # |
| 34 | # URL to upload PUB/DEL/EXP logs |
| 35 | # |
| 36 | #LogUploadURL: ${DRTR_LOG_URL} |
efiacor | 7b9a087 | 2019-08-28 21:20:22 +0000 | [diff] [blame] | 37 | LogUploadURL=https://{{ .Values.global.dmaapDrProvName }}:{{ .Values.global.dmaapDrProvExtPort2 }}/internal/logs |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 38 | |
| 39 | # |
| 40 | # The port number for http as seen within the server |
| 41 | # |
| 42 | #IntHttpPort: ${DRTR_NODE_INTHTTPPORT:-8080} |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 43 | IntHttpPort={{ include "common.getPort" (dict "global" . "name" "api" "getPlain" true) }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 44 | # |
| 45 | # The port number for https as seen within the server |
| 46 | # |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 47 | IntHttpsPort={{ include "common.getPort" (dict "global" . "name" "api") }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 48 | # |
| 49 | # The external port number for https taking port mapping into account |
| 50 | # |
| 51 | ExtHttpsPort=443 |
| 52 | # |
| 53 | # The minimum interval between fetches of the dynamic configuration |
| 54 | # from the provisioning server |
| 55 | # |
| 56 | MinProvFetchInterval=10000 |
| 57 | # |
| 58 | # The minimum interval between saves of the redirection data file |
| 59 | # |
| 60 | MinRedirSaveInterval=10000 |
| 61 | # |
| 62 | # The path to the directory where log files are stored |
| 63 | # |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 64 | LogDir={{ .Values.persistence.event.path }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 65 | # |
| 66 | # The retention interval (in days) for log files |
| 67 | # |
| 68 | LogRetention=30 |
| 69 | # |
| 70 | # The path to the directories where data and meta data files are stored |
| 71 | # |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 72 | SpoolDir={{ .Values.persistence.spool.path }} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 73 | # |
| 74 | # The path to the redirection data file |
| 75 | # |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 76 | RedirectionFile = etc/redirections.dat |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 77 | # |
| 78 | # The type of keystore for https |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 79 | KeyStoreType = PKCS12 |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 80 | # |
| 81 | # The type of truststore for https |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 82 | TrustStoreType = jks |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 83 | # |
| 84 | # The path to the file used to trigger an orderly shutdown |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 85 | QuiesceFile = etc/SHUTDOWN |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 86 | # |
| 87 | # The key used to generate passwords for node to node transfers |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 88 | NodeAuthKey = Node123! |
efiacor | eabb652 | 2019-04-08 09:46:09 +0000 | [diff] [blame] | 89 | # |
| 90 | # DR_NODE DEFAULT ENABLED TLS PROTOCOLS |
| 91 | NodeHttpsProtocols = TLSv1.1|TLSv1.2 |
| 92 | # |
| 93 | # AAF type to generate permission string |
| 94 | AAFType = org.onap.dmaap-dr.feed |
| 95 | # |
| 96 | # AAF default instance to generate permission string - default should be legacy |
| 97 | AAFInstance = legacy |
| 98 | # |
| 99 | # AAF action to generate permission string - default should be publish |
| 100 | AAFAction = publish |
| 101 | # |
efiacor | eabb652 | 2019-04-08 09:46:09 +0000 | [diff] [blame] | 102 | # AAF CADI enabled flag |
| 103 | CadiEnabled = false |
efiacor | e62958b | 2019-09-27 16:54:36 +0100 | [diff] [blame] | 104 | # |
| 105 | # AAF Props file path |
Sylvain Desbureaux | f7768e8 | 2020-03-23 16:48:20 +0100 | [diff] [blame] | 106 | AAFPropsFilePath = {{ .Values.aafConfig.credsPath }}/org.onap.dmaap-dr.props |