blob: 0aeb2d134ca1e3527159eb97945a70810e802b1a [file] [log] [blame]
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -04001#
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
20aai.config.checktime=1000
21
22# this could come from siteconfig.pl?
23aai.config.nodename=AutomaticallyOverwritten
24
25aai.server.url.base=https://aai.{{ include "common.namespace" . }}:8443/aai/
26aai.server.url=https://aai.{{ include "common.namespace" . }}:8443/aai/{{ .Values.global.config.schema.version.api.default }}/
27aai.global.callback.url=https://aai.{{ include "common.namespace" . }}:8443/aai/
28
29{{ if .Values.global.config.basic.auth.enabled }}
30aai.tools.enableBasicAuth=true
31aai.tools.username={{ .Values.global.config.basic.auth.username }}
32aai.tools.password={{ .Values.global.config.basic.auth.passwd }}
33{{ end }}
34
35aai.truststore.filename={{ .Values.global.config.truststore.filename }}
36aai.truststore.passwd.x={{ .Values.global.config.truststore.passwd }}
37aai.keystore.filename={{ .Values.global.config.keystore.filename }}
38aai.keystore.passwd.x={{ .Values.global.config.keystore.passwd }}
39
40aai.notification.current.version={{ .Values.global.config.schema.version.api.default }}
41aai.notificationEvent.default.status=UNPROCESSED
42aai.notificationEvent.default.eventType={{ .Values.global.config.notification.eventType }}
43aai.notificationEvent.default.domain={{ .Values.global.config.notification.domain }}
44aai.notificationEvent.default.sourceName=aai
45aai.notificationEvent.default.sequenceNumber=0
46aai.notificationEvent.default.severity=NORMAL
47aai.notificationEvent.default.version={{ .Values.global.config.schema.version.api.default }}
48# This one lets us enable/disable resource-version checking on updates/deletes
49aai.resourceversion.enableflag=true
50aai.logging.maxStackTraceEntries=10
51aai.default.api.version={{ .Values.global.config.schema.version.api.default }}
52
53# Used by Data Grooming
54aai.grooming.default.max.fix={{ .Values.config.maxFix.dataGrooming | int }}
55aai.grooming.default.sleep.minutes={{ .Values.config.sleepMinutes.dataGrooming | int }}
56
57# Used by DupeTool
58aai.dupeTool.default.max.fix={{ .Values.config.maxFix.dupeTool | int }}
59aai.dupeTool.default.sleep.minutes={{ .Values.config.sleepMinutes.dupeTool | int }}
60
61
62aai.model.proc.max.levels=50
63aai.edgeTag.proc.max.levels=50
64
65# Used by the ForceDelete tool
66aai.forceDel.protected.nt.list=cloud-region
67aai.forceDel.protected.edge.count=10
68aai.forceDel.protected.descendant.count=10
69
70#used by the dataGrooming and dataSnapshot cleanup tasks
71aai.cron.enable.datagroomingcleanup={{ .Values.config.cron.dataCleanup.dataGrooming.enabled }}
72aai.cron.enable.datasnapshotcleanup={{ .Values.config.cron.dataCleanup.dataSnapshot.enabled }}
73aai.datagrooming.agezip={{ .Values.config.cron.dataCleanup.dataGrooming.ageZip | int }}
74aai.datagrooming.agedelete={{ .Values.config.cron.dataCleanup.dataGrooming.ageDelete | int }}
75
76aai.datasnapshot.agezip={{ .Values.config.cron.dataCleanup.dataSnapshot.ageZip | int }}
77aai.datasnapshot.agedelete={{ .Values.config.cron.dataCleanup.dataSnapshot.ageDelete | int }}
78
79#used by the dataSnapshot and dataGrooming tasks
80aai.cron.enable.dataSnapshot={{ .Values.config.cron.dataSnapshot.enabled }}
81
82aai.cron.enable.dataGrooming={{ .Values.config.cron.dataGrooming.enabled }}
83
84#used by the dataGrooming tasks
85aai.datagrooming.enableautofix=true
86aai.datagrooming.enabledupefixon=true
87aai.datagrooming.enabledontfixorphans=true
88aai.datagrooming.enabletimewindowminutes=true
89aai.datagrooming.enableskiphostcheck=false
90aai.datagrooming.enablesleepminutes=false
91aai.datagrooming.enableedgesonly=false
92aai.datagrooming.enableskipedgechecks=false
93aai.datagrooming.enablemaxfix=false
94aai.datagrooming.enablesinglecommits=false
95aai.datagrooming.enabledupecheckoff=false
96aai.datagrooming.enableghost2checkoff=false
97aai.datagrooming.enableghost2fixon=false
98aai.datagrooming.enablef=false
99
100# used by the dataGrooming to set values
101aai.datagrooming.timewindowminutesvalue=10500
102aai.datagrooming.sleepminutesvalue=100
103aai.datagrooming.maxfixvalue=10
104aai.datagrooming.fvalue=10
105
106#timeout for traversal enabled flag
107aai.graphadmin.timeoutenabled={{ .Values.config.timeout.enabled }}
108#default timeout limit added for graphadmin if not overridden (in ms)
109aai.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)
112aai.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
116aai.disable.check.snapshot.running=false
117aai.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
123aai.datasnapshot.params={{ .Values.config.cron.dataSnapshot.params }}