blob: adabae3ac72a31596203694927a630f4e08cf98a [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 Desbureauxb4e038d2020-12-15 12:00:26 +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#
25
26####################################################################
27# REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE
28# TEMPLATE AND *ALL* DATAFILES
29####################################################################
30
31####################################################################
32# REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE
33# TEMPLATE AND *ALL* DATAFILES
34####################################################################
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010035*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010036
37aai.config.checktime=1000
38
39# this could come from siteconfig.pl?
40aai.config.nodename=AutomaticallyOverwritten
41
osk1146127fd7d82021-06-18 00:51:17 +020042aai.server.url.base=http://aai.{{ include "common.namespace" . }}/aai/
43aai.server.url=http://aai.{{ include "common.namespace" . }}/aai/{{ .Values.global.config.schema.version.api.default }}/
44aai.global.callback.url=http://aai.{{ include "common.namespace" . }}/aai/
Sylvain Desbureaux70070412020-11-09 21:58:48 +010045
46{{ if .Values.global.config.basic.auth.enabled }}
47aai.tools.enableBasicAuth=true
48aai.tools.username={{ .Values.global.config.basic.auth.username }}
49aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
50{{ end }}
51
Sylvain Desbureaux70070412020-11-09 21:58:48 +010052aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
53aai.notificationEvent.default.status=UNPROCESSED
54aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
55aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
56aai.notificationEvent.default.sourceName=aai
57aai.notificationEvent.default.sequenceNumber=0
58aai.notificationEvent.default.severity=NORMAL
59aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
60# This one lets us enable/disable resource-version checking on updates/deletes
61aai.resourceversion.enableflag=true
62aai.logging.maxStackTraceEntries=10
63aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
64
65aai.logging.trace.enabled=true
66aai.logging.trace.logrequest=false
67aai.logging.trace.logresponse=false
68
69aai.transaction.logging=true
70aai.transaction.logging.get=false
71aai.transaction.logging.post=true
72
73aai.realtime.clients={{ .Values.global.config.realtime.clients }}
74
75# Timeout for crud enabled flag
76aai.crud.timeoutenabled={{ .Values.config.crud.timeout.enabled }}
77
78# Timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
79aai.crud.timeout.appspecific={{ .Values.config.crud.timeout.appspecific }}
80
81#default timeout limit added for crud if not overridden (in ms)
82aai.crud.timeoutlimit={{ .Values.config.crud.timeout.limit }}
83#limit set for bulk consumer APIS
84aai.bulkconsumer.payloadlimit={{ .Values.config.bulk.limit }}
85
86#uncomment and use header X-OverrideLimit with the value to override the bulk api limit
87aai.bulkconsumer.payloadoverride={{ .Values.config.bulk.override }}
Rommel Pawarc8845ef2022-09-22 14:04:14 -070088
89#
90# AAI Graph DB checker task
91#
92
93# Indicator to enable or disable scheduled task (true/false)
94aai.graph.checker.task.enabled=true
95
96# Delay, in seconds, before the scheduled task is started, if enabled
97aai.graph.checker.task.delay=5
98
99# Period, in seconds, between two consecutive executions of the scheduled task, if enabled
100aai.graph.checker.task.period=10