[AAI] Make AAI helm3 compatible
[oom.git] / kubernetes / aai / components / aai-resources / 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 # ================================================================================
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 ####################################################################
33 */}}
34
35 aai.config.checktime=1000
36
37 # this could come from siteconfig.pl?
38 aai.config.nodename=AutomaticallyOverwritten
39
40 aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
41 aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
42 aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
43
44 {{ if .Values.global.config.basic.auth.enabled }}
45 aai.tools.enableBasicAuth=true
46 aai.tools.username={{ .Values.global.config.basic.auth.username }}
47 aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
48 {{ end }}
49
50 aai.truststore.filename={{ .Values.global.config.truststore.filename }}
51 aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }}
52 aai.keystore.filename={{ .Values.global.config.keystore.filename }}
53 aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }}
54
55 aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
56 aai.notificationEvent.default.status=UNPROCESSED
57 aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
58 aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
59 aai.notificationEvent.default.sourceName=aai
60 aai.notificationEvent.default.sequenceNumber=0
61 aai.notificationEvent.default.severity=NORMAL
62 aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
63 # This one lets us enable/disable resource-version checking on updates/deletes
64 aai.resourceversion.enableflag=true
65 aai.logging.maxStackTraceEntries=10
66 aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
67
68 aai.logging.trace.enabled=true
69 aai.logging.trace.logrequest=false
70 aai.logging.trace.logresponse=false
71
72 aai.transaction.logging=true
73 aai.transaction.logging.get=false
74 aai.transaction.logging.post=true
75
76 aai.realtime.clients={{ .Values.global.config.realtime.clients }}
77
78 # Timeout for crud enabled flag
79 aai.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)
82 aai.crud.timeout.appspecific={{ .Values.config.crud.timeout.appspecific }}
83
84 #default timeout limit added for crud if not overridden (in ms)
85 aai.crud.timeoutlimit={{ .Values.config.crud.timeout.limit }}
86 #limit set for bulk consumer APIS
87 aai.bulkconsumer.payloadlimit={{ .Values.config.bulk.limit }}
88
89 #uncomment and use header X-OverrideLimit with the value to override the bulk api limit
90 aai.bulkconsumer.payloadoverride={{ .Values.config.bulk.override }}