Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame^] | 1 | # |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # org.onap.aai |
| 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 | aai.config.checktime=1000 |
| 24 | |
| 25 | # this could come from siteconfig.pl? |
| 26 | aai.config.nodename=AutomaticallyOverwritten |
| 27 | |
| 28 | aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/ |
| 29 | aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/ |
| 30 | aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/ |
| 31 | |
| 32 | {{ if .Values.global.config.basic.auth.enabled }} |
| 33 | aai.tools.enableBasicAuth=true |
| 34 | aai.tools.username={{ .Values.global.config.basic.auth.username }} |
| 35 | aai.tools.password={{ .Values.global.config.basic.auth.passwd }} |
| 36 | {{ end }} |
| 37 | |
| 38 | aai.truststore.filename={{ .Values.global.config.truststore.filename }} |
| 39 | aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }} |
| 40 | aai.keystore.filename={{ .Values.global.config.keystore.filename }} |
| 41 | aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }} |
| 42 | |
| 43 | aai.notification.current.version={{ .Values.global.config.schema.version.api.default }} |
| 44 | aai.notificationEvent.default.status=UNPROCESSED |
| 45 | aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }} |
| 46 | aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }} |
| 47 | aai.notificationEvent.default.sourceName=aai |
| 48 | aai.notificationEvent.default.sequenceNumber=0 |
| 49 | aai.notificationEvent.default.severity=NORMAL |
| 50 | aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }} |
| 51 | # This one lets us enable/disable resource-version checking on updates/deletes |
| 52 | aai.resourceversion.enableflag=true |
| 53 | aai.logging.maxStackTraceEntries=10 |
| 54 | aai.default.api.version={{ .Values.global.config.schema.version.api.default }} |
| 55 | |
| 56 | # Used by Model-processing code |
| 57 | aai.model.delete.sleep.per.vtx.msec=500 |
| 58 | aai.model.query.resultset.maxcount=50 |
| 59 | aai.model.query.timeout.sec=90 |
| 60 | |
| 61 | aai.model.proc.max.levels=50 |
| 62 | aai.edgeTag.proc.max.levels=50 |
| 63 | |
| 64 | aai.logging.trace.enabled=true |
| 65 | aai.logging.trace.logrequest=false |
| 66 | aai.logging.trace.logresponse=false |
| 67 | |
| 68 | aai.transaction.logging=true |
| 69 | aai.transaction.logging.get=false |
| 70 | aai.transaction.logging.post=false |
| 71 | |
| 72 | aai.realtime.clients={{ .Values.global.config.realtime.clients }} |
| 73 | |
| 74 | #timeout for traversal enabled flag |
| 75 | aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }} |
| 76 | |
| 77 | #timeout app specific |
| 78 | aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }} |
| 79 | |
| 80 | #default timeout limit added for traversal if not overridden (in ms) |
| 81 | aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }} |
| 82 | |
| 83 | #timeout for traversal dsl enabled flag |
| 84 | aai.traversal.dsl.timeoutenabled={{ .Values.config.dsl.timeout.enabled }} |
| 85 | |
| 86 | #timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms) |
| 87 | aai.traversal.dsl.timeout.appspecific={{ .Values.config.dsl.timeout.appspecific | join "|" }} |
| 88 | |
| 89 | #default timeout limit added for traversal dsl if not overridden (in ms) |
| 90 | aai.traversal.dsl.timeoutlimit={{ .Values.config.dsl.timeout.limit | int }} |
| 91 | |
| 92 | # Threshold for margin of error (in ms) for resources_with_sot format to derive the most recent http method performed |
| 93 | aai.resource.formatter.threshold=10 |
| 94 | aai.dsl.override={{ .Values.config.dslOverride }} |