blob: d03f44a08023f5edd5cbc2ab8c97c2ef5925ffc0 [file] [log] [blame]
Jakub Latusek2bd138d2020-10-21 13:36:29 +02001{{/*
Mohammadreza Pasandideh5489ace2018-08-07 10:25:12 -04002# Copyright © 2018 Amdocs
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License
Jakub Latusek2bd138d2020-10-21 13:36:29 +020015*/}}
Mohammadreza Pasandideh5489ace2018-08-07 10:25:12 -040016
17spring.jersey.type=filter
18spring.mvc.urls=swagger,docs,prometheus,auditevents,info,heapdump,autoconfig,beans,loggers,dump,env,trace,health,configprops,mappings,metrics,webjars
19
20
21server.contextPath=/service-decomposition
22spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
23
24#This property is used to set the Tomcat connector attributes.developers can define multiple attributes separated by comma
25#tomcat.connector.attributes=allowTrace-true
26#The max number of active threads in this pool
27server.tomcat.max-threads=200
28#The minimum number of threads always kept alive
29server.tomcat.min-Spare-Threads=25
30#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
31server.tomcat.max-idle-time=60000
32
33basicAuth.username={{ .Values.config.serviceDecompositionUserId }}
34basicAuth.password={{ .Values.config.serviceDecompositionPassword }}
35
36# AAI REST Client Configuration
Geora Barskyee8f6072018-11-01 22:51:23 -040037aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}}
38aai.servicePort={{ .Values.config.aaiPort }}
Geora Barskyf79aaaf2018-12-06 12:24:20 -050039# AAI APIs authentication mode. Valid values: [basic_auth, client_cert]
40aai.authentication=basic_auth
41aai.trustStorePath=n/a
42aai.keyStorePath=n/a
43aai.keyStorePassword=n/a
Geora Barskyee8f6072018-11-01 22:51:23 -040044aai.username={{ .Values.config.aaiUsername }}
45aai.password={{ .Values.config.aaiPassword }}
46aai.httpProtocol={{ .Values.config.aaiHttpProtocol }}
Mohammadreza Pasandideh5489ace2018-08-07 10:25:12 -040047aai.securityProtocol=TLS
Geora Barsky58f5c4f2018-11-02 14:41:10 -040048aai.connectionTimeout=60000
49aai.readTimeout=60000
Tait,Trevor(rt0435)1b64e222019-02-19 14:34:08 -050050aai.resourceList=vnfc,vserver,l3-network,pserver
Mohammadreza Pasandideh5489ace2018-08-07 10:25:12 -040051aai.serviceInstancePath=/aai/v13/nodes/service-instance/{0}
Tait,Trevor(rt0435)1b64e222019-02-19 14:34:08 -050052aai.urlDepth=2
Mohammadreza Pasandideh5489ace2018-08-07 10:25:12 -040053
54#Servlet context parameters
55server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
56