blob: fb27d9ce8023cbd97d944e186d4a23aa8d41e2bb [file] [log] [blame]
Jakub Latusek2bd138d2020-10-21 13:36:29 +02001{{/*
Shane Daniel6974d1b2018-06-15 15:04:53 +00002# 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
Jakub Latusek2bd138d2020-10-21 13:36:29 +020015*/}}
Shane Daniel6974d1b2018-06-15 15:04:53 +000016
17spring.jersey.type=filter
18spring.mvc.urls=swagger,docs,prometheus,auditevents,info,heapdump,autoconfig,beans,loggers,dump,env,trace,health,configprops,mappings,metrics,webjars
19
20server.contextPath=/aaicontextbuilder
21spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
22
23#This property is used to set the Tomcat connector attributes.developers can define multiple attributes separated by comma
24#tomcat.connector.attributes=allowTrace-true
25#The max number of active threads in this pool
26server.tomcat.max-threads=200
27#The minimum number of threads always kept alive
28server.tomcat.min-spare-threads=25
29
30# AAI REST Client Configuration
Geora Barsky453ba032018-08-28 23:34:55 -040031aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}}
32aai.servicePort={{ .Values.config.aaiPort }}
Geora Barskyf79aaaf2018-12-06 12:24:20 -050033# AAI APIs authentication mode. Valid values: [basic_auth, client_cert]
34aai.authentication=basic_auth
35aai.trustStorePath=n/a
36aai.keyStorePath=n/a
37aai.keyStorePassword=n/a
Shane Daniel6974d1b2018-06-15 15:04:53 +000038aai.username={{ .Values.config.aaiUsername }}
39aai.password={{ .Values.config.aaiPassword }}
40aai.httpProtocol={{ .Values.config.aaiHttpProtocol }}
41aai.connectionTimeout={{ .Values.config.aaiConnectionTimeout }}
42aai.readTimeout={{ .Values.config.aaiReadTimeout }}
43
44# HTTP Basic Authorization credentials for Rest Service API
45http.userId={{ .Values.config.httpUserId }}
46http.password={{ .Values.config.httpPassword }}
47
Leigh, Phillip (pl876u)e9c8f132019-03-05 17:57:44 -050048aai.searchNodeQuery=/aai/v13/nodes/service-instance/{0}
Shane Daniel6974d1b2018-06-15 15:04:53 +000049
50#Servlet context parameters
51server.context_parameters.p-name=value #context parameter with p-name as key and value as value.