blob: 87e84781c229231c6bc159259525828e5781f828 [file] [log] [blame]
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +02001###
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
Determe, Sebastien (sd378r)c520a272017-09-22 15:41:51 +020038spring.autoconfigure.exclude=com.att.ajsc.camunda.config.CamundaBpmWebappInitializer,com.att.ajsc.camunda.config.CamundaBpmWebappAutoConfiguration
Determe, Sebastien (sd378r)fbe35382017-09-14 16:11:00 +020039### 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 ...)
42#server.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
67spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
68
69#The max number of active threads in this pool
70server.tomcat.max-threads=200
71#The minimum number of threads always kept alive
72server.tomcat.min-Spare-Threads=25
73#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
74server.tomcat.max-idle-time=60000
75
76
77#Add this properties only if you want to change the URL, AJSC Framework interceptors will intercept
78#com.att.ajsc.common.interceptors.PreInterceptor.url=/**
79#com.att.ajsc.common.interceptors.PostInterceptor.url=/**
80
81#Servlet context parameters
82server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
83
84camel.springboot.consumer-template-cache-size=1000
85camel.springboot.producer-template-cache-size=1000
86camel.springboot.jmx-enabled=true
87camel.defaultthreadpool.poolsize=10
88camel.defaultthreadpool.maxpoolsize=20
89camel.defaultthreadpool.maxqueuesize=1000
90camel.defaultthreadpool.keepaliveTime=60
91camel.defaultthreadpool.rejectpolicy=CallerRuns
92
93kubernetes.namespace=com-att-ajsc
94
95#server.port=0
96
97#Camunda Process Engine DataSource connection Details
98spring.datasource.camunda.url=jdbc:mariadb://localhost:${docker.mariadb.port.host}/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true&maxReconnects=100
99spring.datasource.camunda.username=camunda
100spring.datasource.camunda.password=ndMSpw4CAM
101spring.datasource.camunda.driverClassName=org.mariadb.jdbc.Driver
102spring.datasource.camunda.validationQuery=SELECT 1
103spring.datasource.camunda.validationQueryTimeout=20000
104spring.datasource.camunda.validationInterval=60000
105spring.datasource.camunda.testWhileIdle = true
106# Automatically test whether a connection provided is good or not
107spring.datasource.camunda.testOnBorrow=true
108
109#Camunda application properties
110#Camunda history level
111camunda.bpm.history-level=auto
112camunda.bpm.enabled=false
113camunda.bpm.auto-deployment-enabled=false
114camunda.bpm.job-execution.active=false
115camunda.bpm.job-execution.enabled=false
116camunda.bpm.management.health.camunda.enabled=false
117camunda.bpm.metrics.enabled=false
118
119#clds datasource connection details
120spring.datasource.cldsdb.driver-class-name=org.mariadb.jdbc.Driver
121spring.datasource.cldsdb.url=jdbc:mariadb://localhost:${docker.mariadb.port.host}/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true&maxReconnects=100
122spring.datasource.cldsdb.username=clds
123spring.datasource.cldsdb.password=sidnnd83K
124spring.datasource.cldsdb.driverClassName=com.mysql.jdbc.Driver
125spring.datasource.cldsdb.validationQuery=SELECT 1
126spring.datasource.cldsdb.validationQueryTimeout=20000
127spring.datasource.cldsdb.validationInterval=60000
128spring.datasource.cldsdb.testWhileIdle = true
129# Automatically test whether a connection provided is good or not
130spring.datasource.cldsdb.testOnBorrow=true
131
132#Async Executor default Parameters
133async.core.pool.size=10
134async.max.pool.size=20
135async.queue.capacity=500
136
137org.onap.clamp.config.dcae.url=http://localhost:9000/closedloop-dcae-services
138
139#GRM Edge endpoint details
140service.name=ajsc6camundademo
141service.version=1.0.0.0
142routeoffer=TEST
143#Update with your application name
144application.name=AJSC6CAMUNDA
145
146org.onap.clamp.config.files.cldsReference=classpath:/clds/clds-reference.properties
147org.onap.clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties
148org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
149org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties
150
151#Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
152CLDS_PERMISSION_TYPE_CL=permission-type-cl
153CLDS_PERMISSION_TYPE_CL_MANAGE=permission-type-cl-manage
154CLDS_PERMISSION_TYPE_CL_EVENT=permission-type-cl-event
155CLDS_PERMISSION_TYPE_FILTER_VF=permission-type-filter-vf
156CLDS_PERMISSION_TYPE_TEMPLATE=permission-type-template
157#This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
158CLDS_PERMISSION_INSTANCE=dev