blob: e171d173aa6883b1a2cc89613f75266ae8245cd1 [file] [log] [blame]
Shane Daniel6974d1b2018-06-15 15:04:53 +00001# 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
15spring.jersey.type=filter
16spring.mvc.urls=swagger,docs,prometheus,auditevents,info,heapdump,autoconfig,beans,loggers,dump,env,trace,health,configprops,mappings,metrics,webjars
17
18server.contextPath=/aaicontextbuilder
19spring.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
24server.tomcat.max-threads=200
25#The minimum number of threads always kept alive
26server.tomcat.min-spare-threads=25
27
28# AAI REST Client Configuration
Geora Barsky453ba032018-08-28 23:34:55 -040029aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}}
30aai.servicePort={{ .Values.config.aaiPort }}
Geora Barskyf79aaaf2018-12-06 12:24:20 -050031# AAI APIs authentication mode. Valid values: [basic_auth, client_cert]
32aai.authentication=basic_auth
33aai.trustStorePath=n/a
34aai.keyStorePath=n/a
35aai.keyStorePassword=n/a
Shane Daniel6974d1b2018-06-15 15:04:53 +000036aai.username={{ .Values.config.aaiUsername }}
37aai.password={{ .Values.config.aaiPassword }}
38aai.httpProtocol={{ .Values.config.aaiHttpProtocol }}
39aai.connectionTimeout={{ .Values.config.aaiConnectionTimeout }}
40aai.readTimeout={{ .Values.config.aaiReadTimeout }}
41
42# HTTP Basic Authorization credentials for Rest Service API
43http.userId={{ .Values.config.httpUserId }}
44http.password={{ .Values.config.httpPassword }}
45
Leigh, Phillip (pl876u)e9c8f132019-03-05 17:57:44 -050046aai.searchNodeQuery=/aai/v13/nodes/service-instance/{0}
Shane Daniel6974d1b2018-06-15 15:04:53 +000047
48#Servlet context parameters
49server.context_parameters.p-name=value #context parameter with p-name as key and value as value.