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