Kajur, Harish (vk250x) | 00107b5 | 2018-09-06 14:44:40 -0400 | [diff] [blame] | 1 | # |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # org.onap.aai |
| 4 | # ================================================================================ |
| 5 | # Copyright © 2018 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 | aai.config.checktime=1000 |
| 21 | |
| 22 | # this could come from siteconfig.pl? |
| 23 | aai.config.nodename=AutomaticallyOverwritten |
| 24 | |
| 25 | aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/ |
| 26 | aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/ |
| 27 | aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/ |
| 28 | |
| 29 | {{ if .Values.global.config.basic.auth.enabled }} |
| 30 | aai.tools.enableBasicAuth=true |
| 31 | aai.tools.username={{ .Values.global.config.basic.auth.username }} |
| 32 | aai.tools.password={{ .Values.global.config.basic.auth.passwd }} |
| 33 | {{ end }} |
| 34 | |
| 35 | aai.truststore.filename={{ .Values.global.config.truststore.filename }} |
| 36 | aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }} |
| 37 | aai.keystore.filename={{ .Values.global.config.keystore.filename }} |
| 38 | aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }} |
| 39 | |
| 40 | aai.notification.current.version={{ .Values.global.config.schema.version.api.default }} |
| 41 | aai.notificationEvent.default.status=UNPROCESSED |
| 42 | aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }} |
| 43 | aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }} |
| 44 | aai.notificationEvent.default.sourceName=aai |
| 45 | aai.notificationEvent.default.sequenceNumber=0 |
| 46 | aai.notificationEvent.default.severity=NORMAL |
| 47 | aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }} |
| 48 | # This one lets us enable/disable resource-version checking on updates/deletes |
| 49 | aai.resourceversion.enableflag=true |
| 50 | aai.logging.maxStackTraceEntries=10 |
| 51 | aai.default.api.version={{ .Values.global.config.schema.version.api.default }} |
| 52 | |
| 53 | # Used by Data Grooming |
| 54 | aai.grooming.default.max.fix={{ .Values.config.maxFix.dataGrooming | int }} |
| 55 | aai.grooming.default.sleep.minutes={{ .Values.config.sleepMinutes.dataGrooming | int }} |
| 56 | |
| 57 | # Used by DupeTool |
| 58 | aai.dupeTool.default.max.fix={{ .Values.config.maxFix.dupeTool | int }} |
| 59 | aai.dupeTool.default.sleep.minutes={{ .Values.config.sleepMinutes.dupeTool | int }} |
| 60 | |
| 61 | |
| 62 | aai.model.proc.max.levels=50 |
| 63 | aai.edgeTag.proc.max.levels=50 |
| 64 | |
| 65 | # Used by the ForceDelete tool |
| 66 | aai.forceDel.protected.nt.list=cloud-region |
| 67 | aai.forceDel.protected.edge.count=10 |
| 68 | aai.forceDel.protected.descendant.count=10 |
| 69 | |
| 70 | #used by the dataGrooming and dataSnapshot cleanup tasks |
| 71 | aai.cron.enable.datagroomingcleanup={{ .Values.config.cron.dataCleanup.dataGrooming.enabled }} |
| 72 | aai.cron.enable.datasnapshotcleanup={{ .Values.config.cron.dataCleanup.dataSnapshot.enabled }} |
| 73 | aai.datagrooming.agezip={{ .Values.config.cron.dataCleanup.dataGrooming.ageZip | int }} |
| 74 | aai.datagrooming.agedelete={{ .Values.config.cron.dataCleanup.dataGrooming.ageDelete | int }} |
| 75 | |
| 76 | aai.datasnapshot.agezip={{ .Values.config.cron.dataCleanup.dataSnapshot.ageZip | int }} |
| 77 | aai.datasnapshot.agedelete={{ .Values.config.cron.dataCleanup.dataSnapshot.ageDelete | int }} |
| 78 | |
| 79 | #used by the dataSnapshot and dataGrooming tasks |
| 80 | aai.cron.enable.dataSnapshot={{ .Values.config.cron.dataSnapshot.enabled }} |
| 81 | |
| 82 | aai.cron.enable.dataGrooming={{ .Values.config.cron.dataGrooming.enabled }} |
| 83 | |
| 84 | #used by the dataGrooming tasks |
| 85 | aai.datagrooming.enableautofix=true |
| 86 | aai.datagrooming.enabledupefixon=true |
| 87 | aai.datagrooming.enabledontfixorphans=true |
| 88 | aai.datagrooming.enabletimewindowminutes=true |
| 89 | aai.datagrooming.enableskiphostcheck=false |
| 90 | aai.datagrooming.enablesleepminutes=false |
| 91 | aai.datagrooming.enableedgesonly=false |
| 92 | aai.datagrooming.enableskipedgechecks=false |
| 93 | aai.datagrooming.enablemaxfix=false |
| 94 | aai.datagrooming.enablesinglecommits=false |
| 95 | aai.datagrooming.enabledupecheckoff=false |
| 96 | aai.datagrooming.enableghost2checkoff=false |
| 97 | aai.datagrooming.enableghost2fixon=false |
| 98 | aai.datagrooming.enablef=false |
| 99 | |
| 100 | # used by the dataGrooming to set values |
| 101 | aai.datagrooming.timewindowminutesvalue=10500 |
| 102 | aai.datagrooming.sleepminutesvalue=100 |
| 103 | aai.datagrooming.maxfixvalue=10 |
| 104 | aai.datagrooming.fvalue=10 |
| 105 | |
| 106 | #timeout for traversal enabled flag |
| 107 | aai.graphadmin.timeoutenabled={{ .Values.config.timeout.enabled }} |
| 108 | #default timeout limit added for graphadmin if not overridden (in ms) |
| 109 | aai.graphadmin.timeoutlimit={{ .Values.config.timeout.limit }} |
| 110 | |
| 111 | #timeout app specific -1 to bypass for that app id, a whole number to override the timeout with that value (in ms) |
| 112 | aai.graphadmin.timeout.appspecific={{ .Values.global.config.realtime.clients }} |
| 113 | |
| 114 | # Disable the process check which are oriented towards linux OS |
| 115 | # These props should only be true for local on windows |
| 116 | aai.disable.check.snapshot.running=false |
| 117 | aai.disable.check.grooming.running=false |
| 118 | |
| 119 | # Specify the params listed right here that you would have send to the dataSnapshot shell script |
| 120 | # JUST_TAKE_SNAPSHOT |
| 121 | # THREADED_SNAPSHOT 2 DEBUG |
| 122 | # THREADED_SNAPSHOT 2 |
| 123 | aai.datasnapshot.params={{ .Values.config.cron.dataSnapshot.params }} |