blob: 4b5ab073958e1a1a70f8bf4aac9ec10a38c44455 [file] [log] [blame]
vagrant1a3a3552018-03-10 23:56:32 +00001#
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
33aai.config.checktime=1000
34
35# this could come from siteconfig.pl?
36aai.config.nodename=AutomaticallyOverwritten
37
vagrant1a3a3552018-03-10 23:56:32 +000038aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040039aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
vagrant1a3a3552018-03-10 23:56:32 +000040aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
41
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040042{{ if .Values.global.config.basic.auth.enabled }}
vagrant1a3a3552018-03-10 23:56:32 +000043aai.tools.enableBasicAuth=true
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040044aai.tools.username={{ .Values.global.config.basic.auth.username }}
45aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
46{{ end }}
vagrant1a3a3552018-03-10 23:56:32 +000047
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040048aai.truststore.filename={{ .Values.global.config.truststore.filename }}
49aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }}
50aai.keystore.filename={{ .Values.global.config.keystore.filename }}
51aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }}
vagrant1a3a3552018-03-10 23:56:32 +000052
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040053aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
vagrant1a3a3552018-03-10 23:56:32 +000054aai.notificationEvent.default.status=UNPROCESSED
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040055aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
56aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
vagrant1a3a3552018-03-10 23:56:32 +000057aai.notificationEvent.default.sourceName=aai
58aai.notificationEvent.default.sequenceNumber=0
59aai.notificationEvent.default.severity=NORMAL
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040060aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
vagrant1a3a3552018-03-10 23:56:32 +000061# This one lets us enable/disable resource-version checking on updates/deletes
62aai.resourceversion.enableflag=true
63aai.logging.maxStackTraceEntries=10
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040064aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
vagrant1a3a3552018-03-10 23:56:32 +000065
vagrant1a3a3552018-03-10 23:56:32 +000066aai.logging.trace.enabled=true
67aai.logging.trace.logrequest=false
68aai.logging.trace.logresponse=false
69
70aai.transaction.logging=true
71aai.transaction.logging.get=false
72aai.transaction.logging.post=false
73
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040074aai.realtime.clients={{ .Values.global.config.realtime.clients }}
Kajur, Harish (vk250x)b5f87b42018-05-03 16:53:51 -040075
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040076# Timeout for crud enabled flag
77aai.crud.timeoutenabled={{ .Values.config.crud.timeout.enabled }}
vagrant1a3a3552018-03-10 23:56:32 +000078
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040079# Timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
80aai.crud.timeout.appspecific={{ .Values.config.crud.timeout.appspecific }}
vagrant1a3a3552018-03-10 23:56:32 +000081
82#default timeout limit added for crud if not overridden (in ms)
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040083aai.crud.timeoutlimit={{ .Values.config.crud.timeout.limit }}
vagrant1a3a3552018-03-10 23:56:32 +000084#limit set for bulk consumer APIS
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040085aai.bulkconsumer.payloadlimit={{ .Values.config.bulk.limit }}
vagrant1a3a3552018-03-10 23:56:32 +000086
87#uncomment and use header X-OverrideLimit with the value to override the bulk api limit
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040088aai.bulkconsumer.payloadoverride={{ .Values.config.bulk.override }}