Merge "[SDNC] Fix sdnrdb discovery issue"
[oom.git] / kubernetes / aai / components / aai-traversal / resources / config / aaiconfig.properties
1 {{/*
2 #
3 # ============LICENSE_START=======================================================
4 # org.onap.aai
5 # ================================================================================
6 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 # Modifications Copyright © 2020 Orange
8 # ================================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #    http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END=========================================================
21 #
22 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 #
24 */}}
25
26 aai.config.checktime=1000
27
28 # this could come from siteconfig.pl?
29 aai.config.nodename=AutomaticallyOverwritten
30
31 aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
32 aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
33 aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
34
35 {{ if .Values.global.config.basic.auth.enabled }}
36 aai.tools.enableBasicAuth=true
37 aai.tools.username={{ .Values.global.config.basic.auth.username }}
38 aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
39 {{ end }}
40
41 aai.truststore.filename={{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.fqi_namespace }}.trust.jks
42 aai.truststore.passwd.x=${TRUSTSTORE_PASSWORD}
43 aai.keystore.filename={{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.fqi_namespace }}.p12
44 aai.keystore.passwd.x=${KEYSTORE_PASSWORD}
45
46 aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
47 aai.notificationEvent.default.status=UNPROCESSED
48 aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
49 aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
50 aai.notificationEvent.default.sourceName=aai
51 aai.notificationEvent.default.sequenceNumber=0
52 aai.notificationEvent.default.severity=NORMAL
53 aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
54 # This one lets us enable/disable resource-version checking on updates/deletes
55 aai.resourceversion.enableflag=true
56 aai.logging.maxStackTraceEntries=10
57 aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
58
59 # Used by Model-processing code
60 aai.model.delete.sleep.per.vtx.msec=500
61 aai.model.query.resultset.maxcount=50
62 aai.model.query.timeout.sec=90
63
64 aai.model.proc.max.levels=50
65 aai.edgeTag.proc.max.levels=50
66
67 aai.logging.trace.enabled=true
68 aai.logging.trace.logrequest=false
69 aai.logging.trace.logresponse=false
70
71 aai.transaction.logging=true
72 aai.transaction.logging.get=false
73 aai.transaction.logging.post=false
74
75 aai.realtime.clients={{ .Values.global.config.realtime.clients }}
76
77 #timeout for traversal enabled flag
78 aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }}
79
80 #timeout app specific
81 aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }}
82
83 #default timeout limit added for traversal if not overridden (in ms)
84 aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }}
85
86 #timeout for traversal dsl enabled flag
87 aai.traversal.dsl.timeoutenabled={{ .Values.config.dsl.timeout.enabled }}
88
89 #timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
90 aai.traversal.dsl.timeout.appspecific={{ .Values.config.dsl.timeout.appspecific | join "|" }}
91
92 #default timeout limit added for traversal dsl if not overridden (in ms)
93 aai.traversal.dsl.timeoutlimit={{ .Values.config.dsl.timeout.limit | int }}
94
95 # Threshold for margin of error (in ms) for resources_with_sot format to derive the most recent http method performed
96 aai.resource.formatter.threshold=10
97 aai.dsl.override={{ .Values.config.dslOverride }}