[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / pomba / components / pomba-servicedecomposition / resources / config / application.properties
1 {{/*
2 # 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
15 */}}
16
17 spring.jersey.type=filter
18 spring.mvc.urls=swagger,docs,prometheus,auditevents,info,heapdump,autoconfig,beans,loggers,dump,env,trace,health,configprops,mappings,metrics,webjars
19
20
21 server.contextPath=/service-decomposition
22 spring.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
27 server.tomcat.max-threads=200
28 #The minimum number of threads always kept alive
29 server.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
31 server.tomcat.max-idle-time=60000
32
33 basicAuth.username={{ .Values.config.serviceDecompositionUserId }}
34 basicAuth.password={{ .Values.config.serviceDecompositionPassword }}
35
36 # AAI REST Client Configuration
37 aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}}
38 aai.servicePort={{ .Values.config.aaiPort }}
39 # AAI APIs authentication mode. Valid values: [basic_auth, client_cert]
40 aai.authentication=basic_auth
41 aai.trustStorePath=n/a
42 aai.keyStorePath=n/a
43 aai.keyStorePassword=n/a
44 aai.username={{ .Values.config.aaiUsername }}
45 aai.password={{ .Values.config.aaiPassword }}
46 aai.httpProtocol={{ .Values.config.aaiHttpProtocol }}
47 aai.securityProtocol=TLS
48 aai.connectionTimeout=60000
49 aai.readTimeout=60000
50 aai.resourceList=vnfc,vserver,l3-network,pserver
51 aai.serviceInstancePath=/aai/v13/nodes/service-instance/{0}
52 aai.urlDepth=2
53
54 #Servlet context parameters
55 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
56