[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / pomba / charts / pomba-aaictxbuilder / resources / config / application.properties
1 # Copyright © 2018 Amdocs
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License
14
15 spring.jersey.type=filter
16 spring.mvc.urls=swagger,docs,prometheus,auditevents,info,heapdump,autoconfig,beans,loggers,dump,env,trace,health,configprops,mappings,metrics,webjars
17
18 server.contextPath=/aaicontextbuilder
19 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
20
21 #This property is used to set the Tomcat connector attributes.developers can define multiple attributes separated by comma
22 #tomcat.connector.attributes=allowTrace-true
23 #The max number of active threads in this pool
24 server.tomcat.max-threads=200
25 #The minimum number of threads always kept alive
26 server.tomcat.min-spare-threads=25
27
28 # AAI REST Client Configuration
29 aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}}
30 aai.servicePort={{ .Values.config.aaiPort }}
31 # AAI APIs authentication mode. Valid values: [basic_auth, client_cert]
32 aai.authentication=basic_auth
33 aai.trustStorePath=n/a
34 aai.keyStorePath=n/a
35 aai.keyStorePassword=n/a
36 aai.username={{ .Values.config.aaiUsername }}
37 aai.password={{ .Values.config.aaiPassword }}
38 aai.httpProtocol={{ .Values.config.aaiHttpProtocol }}
39 aai.connectionTimeout={{ .Values.config.aaiConnectionTimeout }}
40 aai.readTimeout={{ .Values.config.aaiReadTimeout }}
41
42 # HTTP Basic Authorization credentials for Rest Service API
43 http.userId={{ .Values.config.httpUserId }}
44 http.password={{ .Values.config.httpPassword }}
45
46 aai.searchNodeQuery=/aai/v13/nodes/service-instance/{0}
47
48 #Servlet context parameters
49 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.