Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
| 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} |
efiacor | 7b9a087 | 2019-08-28 21:20:22 +0000 | [diff] [blame^] | 29 | ProvisioningURL=https://{{ .Values.global.dmaapDrProvName }}:{{ .Values.global.dmaapDrProvExtPort2 }}/internal/prov |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 30 | |
| 31 | # |
| 32 | # URL to upload PUB/DEL/EXP logs |
| 33 | # |
| 34 | #LogUploadURL: ${DRTR_LOG_URL} |
efiacor | 7b9a087 | 2019-08-28 21:20:22 +0000 | [diff] [blame^] | 35 | LogUploadURL=https://{{ .Values.global.dmaapDrProvName }}:{{ .Values.global.dmaapDrProvExtPort2 }}/internal/logs |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 36 | |
| 37 | # |
| 38 | # The port number for http as seen within the server |
| 39 | # |
| 40 | #IntHttpPort: ${DRTR_NODE_INTHTTPPORT:-8080} |
econwar | 28266fa | 2019-03-05 16:39:00 +0000 | [diff] [blame] | 41 | IntHttpPort={{.Values.config.dmaapDrNode.internalPort}} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 42 | # |
| 43 | # The port number for https as seen within the server |
| 44 | # |
econwar | 28266fa | 2019-03-05 16:39:00 +0000 | [diff] [blame] | 45 | IntHttpsPort={{.Values.config.dmaapDrNode.internalPort2}} |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 46 | # |
| 47 | # The external port number for https taking port mapping into account |
| 48 | # |
| 49 | ExtHttpsPort=443 |
| 50 | # |
| 51 | # The minimum interval between fetches of the dynamic configuration |
| 52 | # from the provisioning server |
| 53 | # |
| 54 | MinProvFetchInterval=10000 |
| 55 | # |
| 56 | # The minimum interval between saves of the redirection data file |
| 57 | # |
| 58 | MinRedirSaveInterval=10000 |
| 59 | # |
| 60 | # The path to the directory where log files are stored |
| 61 | # |
| 62 | LogDir=/opt/app/datartr/logs |
| 63 | # |
| 64 | # The retention interval (in days) for log files |
| 65 | # |
| 66 | LogRetention=30 |
| 67 | # |
| 68 | # The path to the directories where data and meta data files are stored |
| 69 | # |
| 70 | SpoolDir=/opt/app/datartr/spool |
| 71 | # |
| 72 | # The path to the redirection data file |
| 73 | # |
| 74 | #RedirectionFile: etc/redirections.dat |
| 75 | # |
| 76 | # The type of keystore for https |
| 77 | # |
| 78 | KeyStoreType=jks |
| 79 | # |
| 80 | # The path to the keystore for https |
| 81 | # |
| 82 | KeyStoreFile=/opt/app/datartr/aaf_certs/org.onap.dmaap-dr.jks |
| 83 | # |
| 84 | # The password for the https keystore |
| 85 | # |
econwar | 4d9f35f | 2019-04-16 08:02:13 +0000 | [diff] [blame] | 86 | KeyStorePassword=WGxd2P6MDo*Bi4+UdzWs{?$8 |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 87 | # |
| 88 | # The password for the private key in the https keystore |
| 89 | # |
econwar | 4d9f35f | 2019-04-16 08:02:13 +0000 | [diff] [blame] | 90 | KeyPassword=WGxd2P6MDo*Bi4+UdzWs{?$8 |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 91 | # |
| 92 | # The type of truststore for https |
| 93 | # |
| 94 | TrustStoreType=jks |
| 95 | # |
| 96 | # The path to the truststore for https |
| 97 | # |
| 98 | TrustStoreFile=/opt/app/datartr/aaf_certs/org.onap.dmaap-dr.trust.jks |
| 99 | # |
| 100 | # The password for the https truststore |
| 101 | # |
econwar | 4d9f35f | 2019-04-16 08:02:13 +0000 | [diff] [blame] | 102 | TrustStorePassword=)OBvCd{e{aWq.^mJJdX:S:1& |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 103 | # |
| 104 | # The path to the file used to trigger an orderly shutdown |
| 105 | # |
| 106 | QuiesceFile=etc/SHUTDOWN |
| 107 | # |
| 108 | # The key used to generate passwords for node to node transfers |
| 109 | # |
| 110 | NodeAuthKey=Node123! |
efiacor | eabb652 | 2019-04-08 09:46:09 +0000 | [diff] [blame] | 111 | # |
| 112 | # DR_NODE DEFAULT ENABLED TLS PROTOCOLS |
| 113 | NodeHttpsProtocols = TLSv1.1|TLSv1.2 |
| 114 | # |
| 115 | # AAF type to generate permission string |
| 116 | AAFType = org.onap.dmaap-dr.feed |
| 117 | # |
| 118 | # AAF default instance to generate permission string - default should be legacy |
| 119 | AAFInstance = legacy |
| 120 | # |
| 121 | # AAF action to generate permission string - default should be publish |
| 122 | AAFAction = publish |
| 123 | # |
| 124 | # AAF URL to connect to AAF server |
efiacor | b405c27 | 2019-04-30 16:10:44 +0000 | [diff] [blame] | 125 | AafUrl = https://aaf-locate:8095 |
efiacor | eabb652 | 2019-04-08 09:46:09 +0000 | [diff] [blame] | 126 | # |
| 127 | # AAF CADI enabled flag |
| 128 | CadiEnabled = false |
Fiachra Corcoran | be96655 | 2018-08-07 16:58:45 +0100 | [diff] [blame] | 129 | |