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