vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 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 | |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 23 | aai.config.checktime=1000 |
| 24 | |
| 25 | # this could come from siteconfig.pl? |
| 26 | aai.config.nodename=AutomaticallyOverwritten |
| 27 | |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 28 | aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/ |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 29 | aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/ |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 30 | aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/ |
| 31 | |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 32 | {{ if .Values.global.config.basic.auth.enabled }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 33 | aai.tools.enableBasicAuth=true |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 34 | aai.tools.username={{ .Values.global.config.basic.auth.username }} |
| 35 | aai.tools.password={{ .Values.global.config.basic.auth.passwd }} |
| 36 | {{ end }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 37 | |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 38 | aai.truststore.filename={{ .Values.global.config.truststore.filename }} |
| 39 | aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }} |
| 40 | aai.keystore.filename={{ .Values.global.config.keystore.filename }} |
| 41 | aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 42 | |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 43 | aai.notification.current.version={{ .Values.global.config.schema.version.api.default }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 44 | aai.notificationEvent.default.status=UNPROCESSED |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 45 | aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }} |
| 46 | aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 47 | aai.notificationEvent.default.sourceName=aai |
| 48 | aai.notificationEvent.default.sequenceNumber=0 |
| 49 | aai.notificationEvent.default.severity=NORMAL |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 50 | aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 51 | # This one lets us enable/disable resource-version checking on updates/deletes |
| 52 | aai.resourceversion.enableflag=true |
| 53 | aai.logging.maxStackTraceEntries=10 |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 54 | aai.default.api.version={{ .Values.global.config.schema.version.api.default }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 55 | |
| 56 | # Used by Model-processing code |
| 57 | aai.model.delete.sleep.per.vtx.msec=500 |
| 58 | aai.model.query.resultset.maxcount=50 |
| 59 | aai.model.query.timeout.sec=90 |
| 60 | |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 61 | aai.model.proc.max.levels=50 |
| 62 | aai.edgeTag.proc.max.levels=50 |
| 63 | |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 64 | aai.logging.trace.enabled=true |
| 65 | aai.logging.trace.logrequest=false |
| 66 | aai.logging.trace.logresponse=false |
| 67 | |
| 68 | aai.transaction.logging=true |
| 69 | aai.transaction.logging.get=false |
| 70 | aai.transaction.logging.post=false |
| 71 | |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 72 | aai.realtime.clients={{ .Values.global.config.realtime.clients }} |
Kajur, Harish (vk250x) | 33cba85 | 2018-05-03 16:53:51 -0400 | [diff] [blame] | 73 | |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 74 | #timeout for traversal enabled flag |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 75 | aai.traversal.timeoutenabled={{ .Values.config.timeout.enabled }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 76 | |
| 77 | #timeout app specific |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 78 | aai.traversal.timeout.appspecific={{ .Values.config.timeout.appspecific }} |
vagrant | 62ddc7d | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 79 | |
| 80 | #default timeout limit added for traversal if not overridden (in ms) |
Kajur, Harish (vk250x) | 41a435d | 2018-09-06 14:44:40 -0400 | [diff] [blame^] | 81 | aai.traversal.timeoutlimit={{ .Values.config.timeout.limit | int }} |