Merge "Modify OOM Apex config for SSL"
[oom.git] / kubernetes / pomba / charts / pomba-networkdiscovery / 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
19 server.contextPath=/network-discovery
20 spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
21
22 #This property is used to set the Tomcat connector attributes.developers can define multiple attributes separated by comma
23 #tomcat.connector.attributes=allowTrace-true
24 #The max number of active threads in this pool
25 server.tomcat.max-threads=200
26 #The minimum number of threads always kept alive
27 server.tomcat.min-Spare-Threads=25
28 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
29 server.tomcat.max-idle-time=60000
30
31 #Servlet context parameters
32 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
33
34 #Enable HTTPS
35 server.port={{ .Values.config.serverSslPort }}
36 server.ssl.key-store={{ .Values.config.serverSslKeyStore }}
37 server.ssl.key-store-password={{ .Values.config.serverSslKeyStorePassword }}
38 server.ssl.client-auth={{ .Values.config.serverSslClientAuth }}
39 server.ssl.enabled={{ .Values.config.serverSslEnabled }}
40 server.ssl.enabled-protocols={{ .Values.config.serverSslEnabledProtocols }}
41
42 # Basic Authentication
43 basicAuth.username={{ .Values.config.networkDiscoveryUserId }}
44 basicAuth.password={{ .Values.config.networkDiscoveryPassword }}
45
46 openstack.identity.url ={{ .Values.config.openstackIdentityUrl }}
47 openstack.identity.user ={{ .Values.config.openstackUserId }}
48 openstack.identity.password ={{ .Values.config.openstackPassword }}
49
50 openstack.types = vserver, l3-network
51 openstack.type.vserver.url    = {{ .Values.config.openstackTypeVserverUrl }}
52 openstack.type.l3-network.url = {{ .Values.config.openstackTypeL3NetworkUrl }}
53
54 openstack.api.microversion = 2.42
55