ae5d31a984a46b07831c83c2c82b35fd3c508be0
[clamp.git] / src / main / resources / application.properties
1 ###\r
2 # ============LICENSE_START=======================================================\r
3 # ONAP CLAMP\r
4 # ================================================================================\r
5 # Copyright (C) 2017 AT&T Intellectual Property. All rights\r
6 #                             reserved.\r
7 # ================================================================================\r
8 # Licensed under the Apache License, Version 2.0 (the "License");\r
9 # you may not use this file except in compliance with the License.\r
10 # You may obtain a copy of the License at\r
11 #\r
12 # http://www.apache.org/licenses/LICENSE-2.0\r
13 #\r
14 # Unless required by applicable law or agreed to in writing, software\r
15 # distributed under the License is distributed on an "AS IS" BASIS,\r
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17 # See the License for the specific language governing permissions and\r
18 # limitations under the License.\r
19 # ============LICENSE_END============================================\r
20 # ===================================================================\r
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22 ###\r
23 \r
24 info.build.artifact=@project.artifactId@\r
25 info.build.name=@project.name@\r
26 info.build.description=@project.description@\r
27 info.build.version=@project.version@\r
28 \r
29 ### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).\r
30 ### (See below for the parameter 'server.http.port' if you want to have both enabled)\r
31 ### To have only HTTP, keep the lines server.ssl.* commented\r
32 ### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location\r
33 server.port=8080\r
34 ### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')\r
35 #server.ssl.key-store=file:/tmp/mykey.jks\r
36 #server.ssl.key-store-password=pass\r
37 #server.ssl.key-password=pass\r
38 \r
39 ### In order to be user friendly when HTTPS is enabled,\r
40 ### you can add another HTTP port that will be automatically redirected to HTTPS\r
41 ### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)\r
42 #server.http-to-https-redirection.port=8090\r
43 \r
44 ### HTTP Example:\r
45 ###--------------\r
46 ### server.port=8080\r
47 \r
48 ### HTTPS Example:\r
49 ### --------------\r
50 ### server.port=8443\r
51 ### server.ssl.key-store=file:/tmp/mykey.jks\r
52 ### server.ssl.key-store-password=mypass\r
53 ### server.ssl.key-password=mypass\r
54 \r
55 ### HTTP (Redirected to HTTPS) and HTTPS Example:\r
56 ### --------------------------------------------\r
57 ### server.port=8443           <-- The HTTPS port\r
58 ### server.ssl.key-store=file:/tmp/mykey.jks\r
59 ### server.ssl.key-store-password=mypass\r
60 ### server.ssl.key-password=mypass\r
61 ### server.http-to-https-redirection.port=8090  <-- The HTTP port\r
62 \r
63 server.contextPath=/\r
64 #Modified engine-rest applicationpath\r
65 spring.jersey.application-path=/engine-rest\r
66 spring.profiles.active=clamp-default,clamp-spring-authentication\r
67 \r
68 #The max number of active threads in this pool\r
69 server.tomcat.max-threads=200\r
70 #The minimum number of threads always kept alive\r
71 server.tomcat.min-Spare-Threads=25\r
72 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads\r
73 server.tomcat.max-idle-time=60000\r
74 \r
75 \r
76 #Add this properties only if you want to change the URL, AJSC Framework interceptors will intercept\r
77 #com.att.ajsc.common.interceptors.PreInterceptor.url=/**\r
78 #com.att.ajsc.common.interceptors.PostInterceptor.url=/**\r
79 \r
80 #Servlet context parameters\r
81 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.\r
82 \r
83 camel.springboot.consumer-template-cache-size=1000\r
84 camel.springboot.producer-template-cache-size=1000\r
85 camel.springboot.jmx-enabled=true\r
86 camel.defaultthreadpool.poolsize=10\r
87 camel.defaultthreadpool.maxpoolsize=20\r
88 camel.defaultthreadpool.maxqueuesize=1000\r
89 camel.defaultthreadpool.keepaliveTime=60\r
90 camel.defaultthreadpool.rejectpolicy=CallerRuns\r
91 \r
92 kubernetes.namespace=com-att-ajsc\r
93 \r
94 #server.port=0\r
95 #Camunda Process Engine DataSource connection Details\r
96 spring.datasource.camunda.driverClassName=org.mariadb.jdbc.Driver\r
97 spring.datasource.camunda.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/camundabpm?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647\r
98 spring.datasource.camunda.username=camunda\r
99 spring.datasource.camunda.password=ndMSpw4CAM\r
100 spring.datasource.camunda.validationQuery=SELECT 1\r
101 spring.datasource.camunda.validationQueryTimeout=20000\r
102 spring.datasource.camunda.validationInterval=30000\r
103 spring.datasource.camunda.testWhileIdle = true\r
104 spring.datasource.camunda.minIdle = 0\r
105 spring.datasource.camunda.initialSize=0\r
106 # Automatically test whether a connection provided is good or not\r
107 spring.datasource.camunda.testOnBorrow=true\r
108 spring.datasource.camunda.ignoreExceptionOnPreLoad=true\r
109 \r
110 #Camunda application properties\r
111 #Camunda history level\r
112 camunda.bpm.history-level=auto\r
113 camunda.bpm.database.type=mariadb\r
114 camunda.bpm.database.schema-update=false\r
115 \r
116 #clds datasource connection details\r
117 spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver\r
118 spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647\r
119 spring.datasource.cldsdb.username=clds\r
120 spring.datasource.cldsdb.password=sidnnd83K\r
121 spring.datasource.cldsdb.validationQuery=SELECT 1\r
122 spring.datasource.cldsdb.validationQueryTimeout=20000\r
123 spring.datasource.cldsdb.validationInterval=30000\r
124 spring.datasource.cldsdb.testWhileIdle = true\r
125 spring.datasource.cldsdb.minIdle = 0\r
126 spring.datasource.cldsdb.initialSize=0\r
127 # Automatically test whether a connection provided is good or not\r
128 spring.datasource.cldsdb.testOnBorrow=true\r
129 spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true\r
130 \r
131 #Async Executor default Parameters\r
132 async.core.pool.size=10\r
133 async.max.pool.size=20\r
134 async.queue.capacity=500\r
135 \r
136 #GRM Edge endpoint details\r
137 service.name=ajsc6camundademo\r
138 service.version=1.0.0.0\r
139 routeoffer=TEST\r
140 #Update with your application name\r
141 application.name=AJSC6CAMUNDA\r
142 \r
143 org.onap.clamp.config.files.cldsReference=classpath:/clds/clds-reference.properties\r
144 org.onap.clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties\r
145 org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json\r
146 org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties\r
147 \r
148 #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !\r
149 CLDS_PERMISSION_TYPE_CL=permission-type-cl\r
150 CLDS_PERMISSION_TYPE_CL_MANAGE=permission-type-cl-manage\r
151 CLDS_PERMISSION_TYPE_CL_EVENT=permission-type-cl-event\r
152 CLDS_PERMISSION_TYPE_FILTER_VF=permission-type-filter-vf\r
153 CLDS_PERMISSION_TYPE_TEMPLATE=permission-type-template\r
154 #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties\r
155 CLDS_PERMISSION_INSTANCE=dev