Jakub Latusek | 2bd138d | 2020-10-21 13:36:29 +0200 | [diff] [blame^] | 1 | {{/* |
Shane Daniel | 6974d1b | 2018-06-15 15:04:53 +0000 | [diff] [blame] | 2 | # 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 Latusek | 2bd138d | 2020-10-21 13:36:29 +0200 | [diff] [blame^] | 15 | */}} |
Shane Daniel | 6974d1b | 2018-06-15 15:04:53 +0000 | [diff] [blame] | 16 | |
| 17 | spring.jersey.type=filter |
| 18 | spring.mvc.urls=swagger,docs,prometheus,auditevents,info,heapdump,autoconfig,beans,loggers,dump,env,trace,health,configprops,mappings,metrics,webjars |
| 19 | |
| 20 | server.contextPath=/aaicontextbuilder |
| 21 | spring.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 |
| 26 | server.tomcat.max-threads=200 |
| 27 | #The minimum number of threads always kept alive |
| 28 | server.tomcat.min-spare-threads=25 |
| 29 | |
| 30 | # AAI REST Client Configuration |
Geora Barsky | 453ba03 | 2018-08-28 23:34:55 -0400 | [diff] [blame] | 31 | aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}} |
| 32 | aai.servicePort={{ .Values.config.aaiPort }} |
Geora Barsky | f79aaaf | 2018-12-06 12:24:20 -0500 | [diff] [blame] | 33 | # AAI APIs authentication mode. Valid values: [basic_auth, client_cert] |
| 34 | aai.authentication=basic_auth |
| 35 | aai.trustStorePath=n/a |
| 36 | aai.keyStorePath=n/a |
| 37 | aai.keyStorePassword=n/a |
Shane Daniel | 6974d1b | 2018-06-15 15:04:53 +0000 | [diff] [blame] | 38 | aai.username={{ .Values.config.aaiUsername }} |
| 39 | aai.password={{ .Values.config.aaiPassword }} |
| 40 | aai.httpProtocol={{ .Values.config.aaiHttpProtocol }} |
| 41 | aai.connectionTimeout={{ .Values.config.aaiConnectionTimeout }} |
| 42 | aai.readTimeout={{ .Values.config.aaiReadTimeout }} |
| 43 | |
| 44 | # HTTP Basic Authorization credentials for Rest Service API |
| 45 | http.userId={{ .Values.config.httpUserId }} |
| 46 | http.password={{ .Values.config.httpPassword }} |
| 47 | |
Leigh, Phillip (pl876u) | e9c8f13 | 2019-03-05 17:57:44 -0500 | [diff] [blame] | 48 | aai.searchNodeQuery=/aai/v13/nodes/service-instance/{0} |
Shane Daniel | 6974d1b | 2018-06-15 15:04:53 +0000 | [diff] [blame] | 49 | |
| 50 | #Servlet context parameters |
| 51 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value. |