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