blob: 58345d06abd0db22a36be6ce8bf9cb478d992a94 [file] [log] [blame]
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -07001###
2# ============LICENSE_START=======================================================
3# ONAP CLAMP
4# ================================================================================
5# Copyright (C) 2017 AT&T Intellectual Property. All rights
6# 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
38
39### In order to be user friendly when HTTPS is enabled,
40### you can add another HTTP port that will be automatically redirected to HTTPS
41### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)
42server.http-to-https-redirection.port=10080
43
44### HTTP Example:
45###--------------
46### server.port=8080
47
48### HTTPS Example:
49### --------------
50### server.port=8443
51### server.ssl.key-store=file:/tmp/mykey.jks
52### server.ssl.key-store-password=mypass
53### server.ssl.key-password=mypass
54
55### HTTP (Redirected to HTTPS) and HTTPS Example:
56### --------------------------------------------
57### server.port=8443 <-- The HTTPS port
58### server.ssl.key-store=file:/tmp/mykey.jks
59### server.ssl.key-store-password=mypass
60### server.ssl.key-password=mypass
61### server.http-to-https-redirection.port=8090 <-- The HTTP port
62
63server.contextPath=/
64#Modified engine-rest applicationpath
65spring.jersey.application-path=/engine-rest
66spring.profiles.active=clamp-default,clamp-spring-authentication
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070067
68#The max number of active threads in this pool
69server.tomcat.max-threads=200
70#The minimum number of threads always kept alive
71server.tomcat.min-Spare-Threads=25
72#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
73server.tomcat.max-idle-time=60000
74
75
76#Add this properties only if you want to change the URL, AJSC Framework interceptors will intercept
77#com.att.ajsc.common.interceptors.PreInterceptor.url=/**
78#com.att.ajsc.common.interceptors.PostInterceptor.url=/**
79
80#Servlet context parameters
81server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
82
83camel.springboot.consumer-template-cache-size=1000
84camel.springboot.producer-template-cache-size=1000
85camel.springboot.jmx-enabled=true
86camel.defaultthreadpool.poolsize=10
87camel.defaultthreadpool.maxpoolsize=20
88camel.defaultthreadpool.maxqueuesize=1000
89camel.defaultthreadpool.keepaliveTime=60
90camel.defaultthreadpool.rejectpolicy=CallerRuns
91
92kubernetes.namespace=com-att-ajsc
93
94#server.port=0
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070095#Camunda Process Engine DataSource connection Details
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +020096spring.datasource.camunda.driverClassName=org.mariadb.jdbc.Driver
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +010097spring.datasource.camunda.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/camundabpm?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070098spring.datasource.camunda.username=camunda
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +010099spring.datasource.camunda.password=D75B89195FD913848EA11416F755390E
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700100spring.datasource.camunda.validationQuery=SELECT 1
101spring.datasource.camunda.validationQueryTimeout=20000
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200102spring.datasource.camunda.validationInterval=30000
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700103spring.datasource.camunda.testWhileIdle = true
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200104spring.datasource.camunda.minIdle = 0
105spring.datasource.camunda.initialSize=0
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700106# Automatically test whether a connection provided is good or not
107spring.datasource.camunda.testOnBorrow=true
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200108spring.datasource.camunda.ignoreExceptionOnPreLoad=true
109
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700110
111#Camunda application properties
112#Camunda history level
Determe, Sebastien (sd378r)29ec9f42017-09-13 16:41:03 +0200113camunda.bpm.history-level=auto
Determe, Sebastien (sd378r)47ee7c92017-11-06 13:39:38 +0100114camunda.bpm.enabled=false
115camunda.bpm.auto-deployment-enabled=false
116camunda.bpm.job-execution.active=false
117camunda.bpm.job-execution.enabled=false
118camunda.bpm.management.health.camunda.enabled=false
119camunda.bpm.metrics.enabled=false
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700120
121#clds datasource connection details
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200122spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100123spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700124spring.datasource.cldsdb.username=clds
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100125spring.datasource.cldsdb.password=035F8819FEBB754F3C99ECCCC1259850
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700126spring.datasource.cldsdb.validationQuery=SELECT 1
127spring.datasource.cldsdb.validationQueryTimeout=20000
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200128spring.datasource.cldsdb.validationInterval=30000
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700129spring.datasource.cldsdb.testWhileIdle = true
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200130spring.datasource.cldsdb.minIdle = 0
131spring.datasource.cldsdb.initialSize=0
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700132# Automatically test whether a connection provided is good or not
133spring.datasource.cldsdb.testOnBorrow=true
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200134spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700135
136#Async Executor default Parameters
137async.core.pool.size=10
138async.max.pool.size=20
139async.queue.capacity=500
140
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700141#GRM Edge endpoint details
142service.name=ajsc6camundademo
143service.version=1.0.0.0
144routeoffer=TEST
145#Update with your application name
146application.name=AJSC6CAMUNDA
147
148org.onap.clamp.config.files.cldsReference=classpath:/clds/clds-reference.properties
149org.onap.clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties
150org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
151org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties
Determe, Sebastien (sd378r)434170f2017-10-30 18:50:37 +0100152org.onap.clamp.encryption.aes.key=aa3871669d893c7fb8abbcda31b88b4f
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700153
154#Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
155CLDS_PERMISSION_TYPE_CL=permission-type-cl
156CLDS_PERMISSION_TYPE_CL_MANAGE=permission-type-cl-manage
157CLDS_PERMISSION_TYPE_CL_EVENT=permission-type-cl-event
158CLDS_PERMISSION_TYPE_FILTER_VF=permission-type-filter-vf
159CLDS_PERMISSION_TYPE_TEMPLATE=permission-type-template
160#This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
161CLDS_PERMISSION_INSTANCE=dev