Mohammadreza Pasandideh | 5489ace | 2018-08-07 10:25:12 -0400 | [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 | |
| 19 | server.contextPath=/service-decomposition |
| 20 | spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration |
| 21 | |
| 22 | #This property is used to set the Tomcat connector attributes.developers can define multiple attributes separated by comma |
| 23 | #tomcat.connector.attributes=allowTrace-true |
| 24 | #The max number of active threads in this pool |
| 25 | server.tomcat.max-threads=200 |
| 26 | #The minimum number of threads always kept alive |
| 27 | server.tomcat.min-Spare-Threads=25 |
| 28 | #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads |
| 29 | server.tomcat.max-idle-time=60000 |
| 30 | |
| 31 | basicAuth.username={{ .Values.config.serviceDecompositionUserId }} |
| 32 | basicAuth.password={{ .Values.config.serviceDecompositionPassword }} |
| 33 | |
| 34 | # AAI REST Client Configuration |
Geora Barsky | ee8f607 | 2018-11-01 22:51:23 -0400 | [diff] [blame] | 35 | aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}} |
| 36 | aai.servicePort={{ .Values.config.aaiPort }} |
Geora Barsky | f79aaaf | 2018-12-06 12:24:20 -0500 | [diff] [blame] | 37 | # AAI APIs authentication mode. Valid values: [basic_auth, client_cert] |
| 38 | aai.authentication=basic_auth |
| 39 | aai.trustStorePath=n/a |
| 40 | aai.keyStorePath=n/a |
| 41 | aai.keyStorePassword=n/a |
Geora Barsky | ee8f607 | 2018-11-01 22:51:23 -0400 | [diff] [blame] | 42 | aai.username={{ .Values.config.aaiUsername }} |
| 43 | aai.password={{ .Values.config.aaiPassword }} |
| 44 | aai.httpProtocol={{ .Values.config.aaiHttpProtocol }} |
Mohammadreza Pasandideh | 5489ace | 2018-08-07 10:25:12 -0400 | [diff] [blame] | 45 | aai.securityProtocol=TLS |
Geora Barsky | 58f5c4f | 2018-11-02 14:41:10 -0400 | [diff] [blame] | 46 | aai.connectionTimeout=60000 |
| 47 | aai.readTimeout=60000 |
Tait,Trevor(rt0435) | 1b64e22 | 2019-02-19 14:34:08 -0500 | [diff] [blame] | 48 | aai.resourceList=vnfc,vserver,l3-network,pserver |
Mohammadreza Pasandideh | 5489ace | 2018-08-07 10:25:12 -0400 | [diff] [blame] | 49 | aai.serviceInstancePath=/aai/v13/nodes/service-instance/{0} |
Tait,Trevor(rt0435) | 1b64e22 | 2019-02-19 14:34:08 -0500 | [diff] [blame] | 50 | aai.urlDepth=2 |
Mohammadreza Pasandideh | 5489ace | 2018-08-07 10:25:12 -0400 | [diff] [blame] | 51 | |
| 52 | #Servlet context parameters |
| 53 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value. |
| 54 | |