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