Sylvain Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 1 | {{/* |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 2 | # |
| 3 | # ============LICENSE_START======================================================= |
| 4 | # org.onap.aai |
| 5 | # ================================================================================ |
| 6 | # Copyright © 2017 AT&T Intellectual Property. All rights reserved. |
Sylvain Desbureaux | b4e038d | 2020-12-15 12:00:26 +0100 | [diff] [blame] | 7 | # Modifications Copyright © 2020 Orange |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 8 | # Modifications Copyright © 2023 Nordix Foundation |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 9 | # ================================================================================ |
| 10 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | # you may not use this file except in compliance with the License. |
| 12 | # You may obtain a copy of the License at |
| 13 | # |
| 14 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | # |
| 16 | # Unless required by applicable law or agreed to in writing, software |
| 17 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | # See the License for the specific language governing permissions and |
| 20 | # limitations under the License. |
| 21 | # ============LICENSE_END========================================================= |
| 22 | # |
| 23 | # ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 24 | # |
| 25 | |
| 26 | #################################################################### |
| 27 | # REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE |
| 28 | # TEMPLATE AND *ALL* DATAFILES |
| 29 | #################################################################### |
| 30 | |
| 31 | #################################################################### |
| 32 | # REMEMBER TO THINK ABOUT ENVIRONMENTAL DIFFERENCES AND CHANGE THE |
| 33 | # TEMPLATE AND *ALL* DATAFILES |
| 34 | #################################################################### |
Sylvain Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 35 | */}} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 36 | |
| 37 | aai.config.checktime=1000 |
| 38 | |
| 39 | # this could come from siteconfig.pl? |
| 40 | aai.config.nodename=AutomaticallyOverwritten |
| 41 | |
osk11461 | 27fd7d8 | 2021-06-18 00:51:17 +0200 | [diff] [blame] | 42 | aai.server.url.base=http://aai.{{ include "common.namespace" . }}/aai/ |
| 43 | aai.server.url=http://aai.{{ include "common.namespace" . }}/aai/{{ .Values.global.config.schema.version.api.default }}/ |
| 44 | aai.global.callback.url=http://aai.{{ include "common.namespace" . }}/aai/ |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 45 | |
| 46 | {{ if .Values.global.config.basic.auth.enabled }} |
| 47 | aai.tools.enableBasicAuth=true |
| 48 | aai.tools.username={{ .Values.global.config.basic.auth.username }} |
| 49 | aai.tools.password={{ .Values.global.config.basic.auth.passwd }} |
| 50 | {{ end }} |
| 51 | |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 52 | aai.notification.current.version={{ .Values.global.config.schema.version.api.default }} |
| 53 | aai.notificationEvent.default.status=UNPROCESSED |
| 54 | aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }} |
| 55 | aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }} |
| 56 | aai.notificationEvent.default.sourceName=aai |
| 57 | aai.notificationEvent.default.sequenceNumber=0 |
| 58 | aai.notificationEvent.default.severity=NORMAL |
| 59 | aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }} |
| 60 | # This one lets us enable/disable resource-version checking on updates/deletes |
| 61 | aai.resourceversion.enableflag=true |
| 62 | aai.logging.maxStackTraceEntries=10 |
| 63 | aai.default.api.version={{ .Values.global.config.schema.version.api.default }} |
| 64 | |
| 65 | aai.logging.trace.enabled=true |
| 66 | aai.logging.trace.logrequest=false |
| 67 | aai.logging.trace.logresponse=false |
| 68 | |
| 69 | aai.transaction.logging=true |
| 70 | aai.transaction.logging.get=false |
| 71 | aai.transaction.logging.post=true |
| 72 | |
| 73 | aai.realtime.clients={{ .Values.global.config.realtime.clients }} |
| 74 | |
| 75 | # Timeout for crud enabled flag |
| 76 | aai.crud.timeoutenabled={{ .Values.config.crud.timeout.enabled }} |
| 77 | |
| 78 | # Timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms) |
| 79 | aai.crud.timeout.appspecific={{ .Values.config.crud.timeout.appspecific }} |
| 80 | |
| 81 | #default timeout limit added for crud if not overridden (in ms) |
| 82 | aai.crud.timeoutlimit={{ .Values.config.crud.timeout.limit }} |
| 83 | #limit set for bulk consumer APIS |
| 84 | aai.bulkconsumer.payloadlimit={{ .Values.config.bulk.limit }} |
| 85 | |
| 86 | #uncomment and use header X-OverrideLimit with the value to override the bulk api limit |
| 87 | aai.bulkconsumer.payloadoverride={{ .Values.config.bulk.override }} |
Rommel Pawar | c8845ef | 2022-09-22 14:04:14 -0700 | [diff] [blame] | 88 | |
| 89 | # |
| 90 | # AAI Graph DB checker task |
| 91 | # |
| 92 | |
| 93 | # Indicator to enable or disable scheduled task (true/false) |
| 94 | aai.graph.checker.task.enabled=true |
| 95 | |
| 96 | # Delay, in seconds, before the scheduled task is started, if enabled |
| 97 | aai.graph.checker.task.delay=5 |
| 98 | |
| 99 | # Period, in seconds, between two consecutive executions of the scheduled task, if enabled |
| 100 | aai.graph.checker.task.period=10 |