blob: f7b2badef150a3a74e93ef3748784e5d8545d801 [file] [log] [blame]
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +02001###
2# ============LICENSE_START=======================================================
3# ONAP CLAMP
4# ================================================================================
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +01005# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +02006# reserved.
7# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END============================================
20# ===================================================================
21# ECOMP is a trademark and service mark of AT&T Intellectual Property.
22###
23
24info.build.artifact=@project.artifactId@
25info.build.name=@project.name@
26info.build.description=@project.description@
27info.build.version=@project.version@
28
29### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).
30### (See below for the parameter 'server.http.port' if you want to have both enabled)
31### To have only HTTP, keep the lines server.ssl.* commented
32### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location
33server.port=10443
34### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')
35server.ssl.key-store=classpath:https/keystore-test.jks
36server.ssl.key-store-password=testpass
37server.ssl.key-password=testpass
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020038### In order to be user friendly when HTTPS is enabled,
39### you can add another HTTP port that will be automatically redirected to HTTPS
40### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)
41#server.http-to-https-redirection.port=10080
42
43### HTTP Example:
44###--------------
45### server.port=8080
46
47### HTTPS Example:
48### --------------
49### server.port=8443
50### server.ssl.key-store=file:/tmp/mykey.jks
51### server.ssl.key-store-password=mypass
52### server.ssl.key-password=mypass
53
54### HTTP (Redirected to HTTPS) and HTTPS Example:
55### --------------------------------------------
56### server.port=8443 <-- The HTTPS port
57### server.ssl.key-store=file:/tmp/mykey.jks
58### server.ssl.key-store-password=mypass
59### server.ssl.key-password=mypass
60### server.http-to-https-redirection.port=8090 <-- The HTTP port
61
62server.contextPath=/
63#Modified engine-rest applicationpath
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +010064spring.jersey.application-path=/restservices/clds/v1
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020065spring.profiles.active=clamp-default,clamp-spring-authentication
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020066
67#The max number of active threads in this pool
68server.tomcat.max-threads=200
69#The minimum number of threads always kept alive
70server.tomcat.min-Spare-Threads=25
71#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
72server.tomcat.max-idle-time=60000
73
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020074#Servlet context parameters
75server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
76
77camel.springboot.consumer-template-cache-size=1000
78camel.springboot.producer-template-cache-size=1000
79camel.springboot.jmx-enabled=true
80camel.defaultthreadpool.poolsize=10
81camel.defaultthreadpool.maxpoolsize=20
82camel.defaultthreadpool.maxqueuesize=1000
83camel.defaultthreadpool.keepaliveTime=60
84camel.defaultthreadpool.rejectpolicy=CallerRuns
85
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020086#server.port=0
87
88#Camunda Process Engine DataSource connection Details
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020089spring.datasource.camunda.driverClassName=org.mariadb.jdbc.Driver
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +010090spring.datasource.camunda.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/camundabpm?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
91spring.datasource.camunda.username=camunda
Determe, Sebastien (sd378r)34400ee2017-11-16 13:22:49 +010092spring.datasource.camunda.password=e1bb2a8381d1aa6c09879bd627db3bb560ad29e8a3343fe6aa7e6a7ba622da4e
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020093spring.datasource.camunda.validationQuery=SELECT 1
94spring.datasource.camunda.validationQueryTimeout=20000
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +010095spring.datasource.camunda.validationInterval=30000
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020096spring.datasource.camunda.testWhileIdle = true
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +010097spring.datasource.camunda.minIdle = 0
98spring.datasource.camunda.initialSize=0
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020099# Automatically test whether a connection provided is good or not
100spring.datasource.camunda.testOnBorrow=true
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100101spring.datasource.camunda.ignoreExceptionOnPreLoad=true
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200102
103#Camunda application properties
104#Camunda history level
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100105camunda.bpm.history-level=none
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200106camunda.bpm.enabled=false
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100107camunda.bpm.jpa.enabled=false
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200108camunda.bpm.auto-deployment-enabled=false
109camunda.bpm.job-execution.active=false
110camunda.bpm.job-execution.enabled=false
111camunda.bpm.management.health.camunda.enabled=false
112camunda.bpm.metrics.enabled=false
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100113camunda.bpm.management.health.camunda.enabled=false
114camunda.bpm.database.schema-update=true
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200115
116#clds datasource connection details
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100117spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
118spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200119spring.datasource.cldsdb.username=clds
Determe, Sebastien (sd378r)34400ee2017-11-16 13:22:49 +0100120spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200121spring.datasource.cldsdb.validationQuery=SELECT 1
122spring.datasource.cldsdb.validationQueryTimeout=20000
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100123spring.datasource.cldsdb.validationInterval=30000
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200124spring.datasource.cldsdb.testWhileIdle = true
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100125spring.datasource.cldsdb.minIdle = 0
126spring.datasource.cldsdb.initialSize=0
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200127# Automatically test whether a connection provided is good or not
128spring.datasource.cldsdb.testOnBorrow=true
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100129spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200130
131#Async Executor default Parameters
132async.core.pool.size=10
133async.max.pool.size=20
134async.queue.capacity=500
135
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200136org.onap.clamp.config.files.cldsReference=classpath:/clds/clds-reference.properties
137org.onap.clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties
138org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
139org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties
Determe, Sebastien (sd378r)34400ee2017-11-16 13:22:49 +0100140
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +0200141
142#Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
143CLDS_PERMISSION_TYPE_CL=permission-type-cl
144CLDS_PERMISSION_TYPE_CL_MANAGE=permission-type-cl-manage
145CLDS_PERMISSION_TYPE_CL_EVENT=permission-type-cl-event
146CLDS_PERMISSION_TYPE_FILTER_VF=permission-type-filter-vf
147CLDS_PERMISSION_TYPE_TEMPLATE=permission-type-template
148#This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
149CLDS_PERMISSION_INSTANCE=dev