blob: 70e8bec01a9522cefe682f1de2db5796d26e5fbc [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.
7# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END=========================================================
20#
21# ECOMP is a trademark and service mark of AT&T Intellectual Property.
22#
23
24####################################################################
25# REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE
26# TEMPLATE AND *ALL* DATAFILES
27####################################################################
28
29####################################################################
30# REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE
31# TEMPLATE AND *ALL* DATAFILES
32####################################################################
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010033*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010034
35aai.config.checktime=1000
36
37# this could come from siteconfig.pl?
38aai.config.nodename=AutomaticallyOverwritten
39
40aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
41aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
42aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
43
44{{ if .Values.global.config.basic.auth.enabled }}
45aai.tools.enableBasicAuth=true
46aai.tools.username={{ .Values.global.config.basic.auth.username }}
47aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
48{{ end }}
49
50aai.truststore.filename={{ .Values.global.config.truststore.filename }}
51aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }}
52aai.keystore.filename={{ .Values.global.config.keystore.filename }}
53aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }}
54
55aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
56aai.notificationEvent.default.status=UNPROCESSED
57aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
58aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
59aai.notificationEvent.default.sourceName=aai
60aai.notificationEvent.default.sequenceNumber=0
61aai.notificationEvent.default.severity=NORMAL
62aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
63# This one lets us enable/disable resource-version checking on updates/deletes
64aai.resourceversion.enableflag=true
65aai.logging.maxStackTraceEntries=10
66aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
67
68aai.logging.trace.enabled=true
69aai.logging.trace.logrequest=false
70aai.logging.trace.logresponse=false
71
72aai.transaction.logging=true
73aai.transaction.logging.get=false
74aai.transaction.logging.post=true
75
76aai.realtime.clients={{ .Values.global.config.realtime.clients }}
77
78# Timeout for crud enabled flag
79aai.crud.timeoutenabled={{ .Values.config.crud.timeout.enabled }}
80
81# Timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
82aai.crud.timeout.appspecific={{ .Values.config.crud.timeout.appspecific }}
83
84#default timeout limit added for crud if not overridden (in ms)
85aai.crud.timeoutlimit={{ .Values.config.crud.timeout.limit }}
86#limit set for bulk consumer APIS
87aai.bulkconsumer.payloadlimit={{ .Values.config.bulk.limit }}
88
89#uncomment and use header X-OverrideLimit with the value to override the bulk api limit
90aai.bulkconsumer.payloadoverride={{ .Values.config.bulk.override }}