Shane Daniel | b36bfcc | 2018-06-26 20:30:18 +0000 | [diff] [blame] | 1 | # Copyright © 2019 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 | camel.springboot.xmlRoutes = file:config/dynamic/routes/*.route |
| 18 | service.xml.beans = config/dynamic/conf/*.xml |
| 19 | |
| 20 | server.contextPath=/sdnccontextbuilder/v1 |
| 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 | # Basic Authorization credentials for SDNC Context Builder REST Service |
| 31 | sdncCtxBuilder.userId={{ .Values.config.sdncCtxBuilderUserId }} |
| 32 | sdncCtxBuilder.password={{ .Values.config.sdncCtxBuilderPassword }} |
| 33 | |
| 34 | # AAI REST Client Configuration |
| 35 | aai.serviceName={{ .Values.config.aaiServiceName }}.{{.Release.Namespace}} |
| 36 | aai.servicePort={{ .Values.config.aaiPort }} |
| 37 | aai.username={{ .Values.config.aaiUsername }} |
| 38 | aai.password={{ .Values.config.aaiPassword }} |
| 39 | aai.httpProtocol={{ .Values.config.aaiHttpProtocol }} |
| 40 | aai.authentication={{ .Values.config.aaiAuthentication }} |
| 41 | aai.trustStorePath={{ .Values.config.aaiTrustStorePath }} |
| 42 | aai.keyStorePath={{ .Values.config.aaiKeyStorePath }} |
| 43 | aai.keyStorePassword={{ .Values.config.aaiKeyStorePassword }} |
| 44 | aai.connectionTimeout={{ .Values.config.aaiConnectionTimeout }} |
| 45 | aai.readTimeout={{ .Values.config.aaiReadTimeout }} |
| 46 | |
| 47 | # HTTP Basic Authorization credentials for AAI Rest Service API |
| 48 | aai.http.userId={{ .Values.config.aaiHttpUserId }} |
| 49 | aai.http.password={{ .Values.config.aaiHttpPassword }} |
| 50 | |
| 51 | aai.searchNodeQuery=/aai/v11/search/nodes-query?search-node-type=service-instance&filter=service-instance-id:EQUALS: |
| 52 | aai.customerQuery=/aai/v11/business/customers/customer/ |
| 53 | aai.serviceInstancePath=/aai/v11/business/customers/customer/{0}/service-subscriptions/service-subscription/{1}/service-instances/service-instance/{2} |
| 54 | |
| 55 | # SDNC REST Client Configuration |
| 56 | sdnc.serviceName={{ .Values.config.sdncServiceName }}.{{.Release.Namespace}} |
| 57 | sdnc.servicePort={{ .Values.config.sdncPort }} |
| 58 | sdnc.user={{ .Values.config.sdncUsername }} |
| 59 | sdnc.password={{ .Values.config.sdncPassword }} |
| 60 | sdnc.httpProtocol={{ .Values.config.sdncHttpProtocol }} |
| 61 | sdnc.connectionTimeout={{ .Values.config.sdncConnectionTimeout }} |
| 62 | sdnc.readTimeout={{ .Values.config.sdncReadTimeout }} |
| 63 | sdnc.genericResourcePath=/restconf/config/GENERIC-RESOURCE-API:services/service/{0} |
| 64 | sdnc.vnfPath=/restconf/config/VNF-API:vnfs/vnf-list/{0} |
| 65 | |
| 66 | #Servlet context parameters |
| 67 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value. |