blob: 4799f097e43e4dfc3d9fe6ccbd0e0f7c2dab2b04 [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
29aai.host={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}}
30aai.port={{ .Values.config.aaiPort }}
31aai.username={{ .Values.config.aaiUsername }}
32aai.password={{ .Values.config.aaiPassword }}
33aai.httpProtocol={{ .Values.config.aaiHttpProtocol }}
34aai.connectionTimeout={{ .Values.config.aaiConnectionTimeout }}
35aai.readTimeout={{ .Values.config.aaiReadTimeout }}
36
37# HTTP Basic Authorization credentials for Rest Service API
38http.userId={{ .Values.config.httpUserId }}
39http.password={{ .Values.config.httpPassword }}
40
41# {0} = customerId {1} = serviceType {2} = serviceInstanceId
42aai.serviceInstancePath=/aai/v11/business/customers/customer/{0}/service-subscriptions/service-subscription/{1}/service-instances/service-instance/{2}
43
44#Servlet context parameters
45server.context_parameters.p-name=value #context parameter with p-name as key and value as value.