blob: 3859590aaf342a53f4fb3d82a5948f0691b04338 [file] [log] [blame]
vagrant62ddc7d2018-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
vagrant62ddc7d2018-03-10 23:56:32 +000023aai.config.checktime=1000
24
25# this could come from siteconfig.pl?
26aai.config.nodename=AutomaticallyOverwritten
27
vagrant62ddc7d2018-03-10 23:56:32 +000028aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040029aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
vagrant62ddc7d2018-03-10 23:56:32 +000030aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
31
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040032{{ if .Values.global.config.basic.auth.enabled }}
vagrant62ddc7d2018-03-10 23:56:32 +000033aai.tools.enableBasicAuth=true
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040034aai.tools.username={{ .Values.global.config.basic.auth.username }}
35aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
36{{ end }}
vagrant62ddc7d2018-03-10 23:56:32 +000037
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040038aai.truststore.filename={{ .Values.global.config.truststore.filename }}
39aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }}
40aai.keystore.filename={{ .Values.global.config.keystore.filename }}
41aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }}
vagrant62ddc7d2018-03-10 23:56:32 +000042
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040043aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
vagrant62ddc7d2018-03-10 23:56:32 +000044aai.notificationEvent.default.status=UNPROCESSED
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040045aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
46aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
vagrant62ddc7d2018-03-10 23:56:32 +000047aai.notificationEvent.default.sourceName=aai
48aai.notificationEvent.default.sequenceNumber=0
49aai.notificationEvent.default.severity=NORMAL
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040050aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
vagrant62ddc7d2018-03-10 23:56:32 +000051# This one lets us enable/disable resource-version checking on updates/deletes
52aai.resourceversion.enableflag=true
53aai.logging.maxStackTraceEntries=10
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040054aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
vagrant62ddc7d2018-03-10 23:56:32 +000055
56# Used by Model-processing code
57aai.model.delete.sleep.per.vtx.msec=500
58aai.model.query.resultset.maxcount=50
59aai.model.query.timeout.sec=90
60
vagrant62ddc7d2018-03-10 23:56:32 +000061aai.model.proc.max.levels=50
62aai.edgeTag.proc.max.levels=50
63
vagrant62ddc7d2018-03-10 23:56:32 +000064aai.logging.trace.enabled=true
65aai.logging.trace.logrequest=false
66aai.logging.trace.logresponse=false
67
68aai.transaction.logging=true
69aai.transaction.logging.get=false
70aai.transaction.logging.post=false
71
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040072aai.realtime.clients={{ .Values.global.config.realtime.clients }}
Kajur, Harish (vk250x)33cba852018-05-03 16:53:51 -040073
vagrant62ddc7d2018-03-10 23:56:32 +000074#timeout for traversal enabled flag
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040075aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }}
vagrant62ddc7d2018-03-10 23:56:32 +000076
77#timeout app specific
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040078aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }}
vagrant62ddc7d2018-03-10 23:56:32 +000079
80#default timeout limit added for traversal if not overridden (in ms)
Kajur, Harish (vk250x)41a435d2018-09-06 14:44:40 -040081aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }}