Jennie Jia | 0e03544 | 2018-06-25 15:12:08 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 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=/sdccontextbuilder |
| 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 | #server.port=9191 |
| 28 | |
| 29 | #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads |
| 30 | server.tomcat.max-idle-time=60000 |
| 31 | |
| 32 | #Application properties |
| 33 | sdcConnect.username={{ .Values.config.sdcUsername }} |
| 34 | sdcConnect.password={{ .Values.config.sdcPassword }} |
| 35 | sdcConnect.consumerID={{ .Values.config.sdcConsumerId }} |
| 36 | sdcConnect.sdcAddress={{ .Values.config.sdcServiceName }}.{{.Release.Namespace}}:{{ .Values.config.sdcPort }} |
| 37 | |
| 38 | # Minimum timeout value is 15 seconds; default is 120000s |
Geora Barsky | 58f5c4f | 2018-11-02 14:41:10 -0400 | [diff] [blame] | 39 | sdcConnect.timeout.seconds=60000 |
Jennie Jia | 0e03544 | 2018-06-25 15:12:08 +0000 | [diff] [blame] | 40 | |
| 41 | # {0} = UUID |
| 42 | sdc.url.template=/sdc/v1/catalog/services/{0}/toscaModel |
| 43 | sdc.artifact.type=TOSCA_CSAR |
| 44 | |
| 45 | # Intended name for downloaded temporary CSAR files: csar-[UUID].zip |
| 46 | # Only .zip and .csar are accepted extensions, default is .zip |
| 47 | sdc.csar.file.prefix=csar- |
| 48 | sdc.csar.file.suffix=.zip |
| 49 | |
| 50 | # HTTP Basic Authorization credentials for Rest Service API |
| 51 | http.userId={{ .Values.config.sdcCtxBuilderUserId }} |
| 52 | http.password={{ .Values.config.sdcCtxBuilderPassword }} |
| 53 | |
| 54 | #Servlet context parameters |
| 55 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value. |
| 56 | |
| 57 | #test.tosca.csar.file=\\config\\toscaModel.csar.zip |