blob: 559166ba8ed31148dc6176cbc59709f6af0b639a [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002#
3# ============LICENSE_START=======================================================
4# org.onap.aai
5# ================================================================================
6# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +01007# Modifications Copyright © 2020 Orange
efiacord12c1672023-03-23 12:10:50 +00008# Modifications Copyright © 2023 Nordix Foundation
Sylvain Desbureaux70070412020-11-09 21:58:48 +01009# ================================================================================
10# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
13#
14# http://www.apache.org/licenses/LICENSE-2.0
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
21# ============LICENSE_END=========================================================
22#
23# ECOMP is a trademark and service mark of AT&T Intellectual Property.
24#
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010025*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010026
27aai.config.checktime=1000
28
29# this could come from siteconfig.pl?
30aai.config.nodename=AutomaticallyOverwritten
osk1146127fd7d82021-06-18 00:51:17 +020031aai.server.url.base=http://aai.{{ include "common.namespace" . }}/aai/
32aai.server.url=http://aai.{{ include "common.namespace" . }}/aai/{{ .Values.global.config.schema.version.api.default }}/
33aai.global.callback.url=http://aai.{{ include "common.namespace" . }}/aai/
Sylvain Desbureaux70070412020-11-09 21:58:48 +010034
osk1146127fd7d82021-06-18 00:51:17 +020035{{ if or (.Values.global.config.basic.auth.enabled) ( include "common.onServiceMesh" .) }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010036aai.tools.enableBasicAuth=true
37aai.tools.username={{ .Values.global.config.basic.auth.username }}
38aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
39{{ end }}
40
Sylvain Desbureaux70070412020-11-09 21:58:48 +010041aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
42aai.notificationEvent.default.status=UNPROCESSED
43aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
44aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
45aai.notificationEvent.default.sourceName=aai
46aai.notificationEvent.default.sequenceNumber=0
47aai.notificationEvent.default.severity=NORMAL
48aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
49# This one lets us enable/disable resource-version checking on updates/deletes
50aai.resourceversion.enableflag=true
51aai.logging.maxStackTraceEntries=10
52aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
53
54# Used by Model-processing code
55aai.model.delete.sleep.per.vtx.msec=500
56aai.model.query.resultset.maxcount=50
57aai.model.query.timeout.sec=90
58
59aai.model.proc.max.levels=50
60aai.edgeTag.proc.max.levels=50
61
62aai.logging.trace.enabled=true
63aai.logging.trace.logrequest=false
64aai.logging.trace.logresponse=false
65
66aai.transaction.logging=true
67aai.transaction.logging.get=false
68aai.transaction.logging.post=false
69
70aai.realtime.clients={{ .Values.global.config.realtime.clients }}
71
72#timeout for traversal enabled flag
73aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }}
74
75#timeout app specific
76aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }}
77
78#default timeout limit added for traversal if not overridden (in ms)
79aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }}
80
81#timeout for traversal dsl enabled flag
82aai.traversal.dsl.timeoutenabled={{ .Values.config.dsl.timeout.enabled }}
83
84#timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
85aai.traversal.dsl.timeout.appspecific={{ .Values.config.dsl.timeout.appspecific | join "|" }}
86
87#default timeout limit added for traversal dsl if not overridden (in ms)
88aai.traversal.dsl.timeoutlimit={{ .Values.config.dsl.timeout.limit | int }}
89
90# Threshold for margin of error (in ms) for resources_with_sot format to derive the most recent http method performed
91aai.resource.formatter.threshold=10
92aai.dsl.override={{ .Values.config.dslOverride }}