blob: c7771e11338ff6d1f9aefad6ff896ca941c01915 [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#
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010023*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010024
25aai.config.checktime=1000
26
27# this could come from siteconfig.pl?
28aai.config.nodename=AutomaticallyOverwritten
29
30aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
31aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
32aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
33
34{{ if .Values.global.config.basic.auth.enabled }}
35aai.tools.enableBasicAuth=true
36aai.tools.username={{ .Values.global.config.basic.auth.username }}
37aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
38{{ end }}
39
40aai.truststore.filename={{ .Values.global.config.truststore.filename }}
41aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }}
42aai.keystore.filename={{ .Values.global.config.keystore.filename }}
43aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }}
44
45aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
46aai.notificationEvent.default.status=UNPROCESSED
47aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
48aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
49aai.notificationEvent.default.sourceName=aai
50aai.notificationEvent.default.sequenceNumber=0
51aai.notificationEvent.default.severity=NORMAL
52aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
53# This one lets us enable/disable resource-version checking on updates/deletes
54aai.resourceversion.enableflag=true
55aai.logging.maxStackTraceEntries=10
56aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
57
58# Used by Model-processing code
59aai.model.delete.sleep.per.vtx.msec=500
60aai.model.query.resultset.maxcount=50
61aai.model.query.timeout.sec=90
62
63aai.model.proc.max.levels=50
64aai.edgeTag.proc.max.levels=50
65
66aai.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
74aai.realtime.clients={{ .Values.global.config.realtime.clients }}
75
76#timeout for traversal enabled flag
77aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }}
78
79#timeout app specific
80aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }}
81
82#default timeout limit added for traversal if not overridden (in ms)
83aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }}
84
85#timeout for traversal dsl enabled flag
86aai.traversal.dsl.timeoutenabled={{ .Values.config.dsl.timeout.enabled }}
87
88#timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms)
89aai.traversal.dsl.timeout.appspecific={{ .Values.config.dsl.timeout.appspecific | join "|" }}
90
91#default timeout limit added for traversal dsl if not overridden (in ms)
92aai.traversal.dsl.timeoutlimit={{ .Values.config.dsl.timeout.limit | int }}
93
94# Threshold for margin of error (in ms) for resources_with_sot format to derive the most recent http method performed
95aai.resource.formatter.threshold=10
96aai.dsl.override={{ .Values.config.dslOverride }}