blob: 7b29e179f8548edab9da95086c219bba6abdc8ba [file] [log] [blame]
xg353ya2f90ab2019-05-09 13:14:40 +02001###
2# ============LICENSE_START=======================================================
3# ONAP CLAMP
4# ================================================================================
5# Copyright (C) 2017-2018 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#
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=${clamp.it.tests.http}
34### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')
35#server.ssl.key-store=file:/tmp/mykey.jks
36#server.ssl.key-store-password=pass
37#server.ssl.key-password=pass
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 ...)
42#server.http-to-https-redirection.port=8090
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.servlet.context-path=/
64#Modified engine-rest applicationpath
65spring.profiles.active=clamp-default,clamp-default-user
66spring.http.converters.preferred-json-mapper=gson
67
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#Servlet context parameters
76server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
77
78camel.springboot.consumer-template-cache-size=1000
79camel.springboot.producer-template-cache-size=1000
80# JMX enabled to have Camel Swagger runtime working
81camel.springboot.jmx-enabled=true
82camel.defaultthreadpool.poolsize=10
83camel.defaultthreadpool.maxpoolsize=20
84camel.defaultthreadpool.maxqueuesize=1000
85camel.defaultthreadpool.keepaliveTime=60
86camel.defaultthreadpool.rejectpolicy=CallerRuns
87#camel.springboot.xmlRoutes = false
88camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
89camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
90#camel.springboot.typeConversion = false
91
92#clds datasource connection details
93spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
94spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306,localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
95spring.datasource.cldsdb.username=clds
96spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
97spring.datasource.cldsdb.validationQuery=SELECT 1
98spring.datasource.cldsdb.validationQueryTimeout=20000
99spring.datasource.cldsdb.validationInterval=30000
100spring.datasource.cldsdb.testWhileIdle = true
101spring.datasource.cldsdb.minIdle = 0
102spring.datasource.cldsdb.initialSize=0
103# Automatically test whether a connection provided is good or not
104spring.datasource.cldsdb.testOnBorrow=true
105spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
106
sebdet75c0f1d2019-03-02 00:17:46 +0100107spring.jpa.properties.javax.persistence.schema-generation.database.action=drop-and-create
sebdetc2bcf2a2019-02-22 08:16:26 +0100108#spring.jpa.properties.javax.persistence.schema-generation.create-source=metadata
109#spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
110#spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql
111# disable Hibernate DDL generation because the schema will be generated from a sql script
112spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
113spring.jpa.properties.hibernate.ddl-auto=validate
114spring.jpa.properties.hibernate.hbm2ddl.delimiter=;
115spring.jpa.properties.hibernate.format_sql=true
116spring.jpa.properties.hibernate.use-new-id-generator-mappings=true
117
118# Whether to enable logging of SQL statements.
119spring.jpa.show-sql=true
120
xg353ya2f90ab2019-05-09 13:14:40 +0200121#Async Executor default Parameters
122async.core.pool.size=10
123async.max.pool.size=20
124async.queue.capacity=500
125
126#For EELF logback file
127#com.att.eelf.logging.path=
128clamp.config.logback.filename=logback-default.xml
129#The log folder that will be used in logback.xml file
130clamp.config.log.path=log
131clamp.config.files.systemProperties=classpath:/system.properties
132clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
133clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
134clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
135
136# Properties for Clamp
137# DCAE request build properties
138#
139clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
140clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
141#
142#
143# Configuration Settings for Policy Engine Components
144clamp.config.policy.api.url=http4://localhost:${docker.http-cache.port.host}
145clamp.config.policy.api.userName=healthcheck
146clamp.config.policy.api.password=zb!XztG34
147clamp.config.policy.pap.url=http4://localhost:${docker.http-cache.port.host}
148clamp.config.policy.pap.userName=healthcheck
149clamp.config.policy.pap.password=zb!XztG34
150
151clamp.config.policy.pdpUrl1=http://localhost:${docker.http-cache.port.host}/pdp/ , testpdp, alpha123
152clamp.config.policy.pdpUrl2=http://localhost:${docker.http-cache.port.host}/pdp/ , testpdp, alpha123
153clamp.config.policy.papUrl=http://localhost:${docker.http-cache.port.host}/pap/ , testpap, alpha123
154clamp.config.policy.notificationType=websocket
155clamp.config.policy.notificationUebServers=localhost
156clamp.config.policy.notificationTopic=
157clamp.config.policy.clientId=python
158# base64 encoding
159clamp.config.policy.clientKey=dGVzdA==
160#DEVL for development
161#TEST for Test environments
162#PROD for prod environments
163clamp.config.policy.policyEnvironment=DEVL
164# General Policy request properties
165#
166clamp.config.policy.onap.name=DCAE
167clamp.config.policy.pdp.group=default
168clamp.config.policy.ms.type=MicroService
169clamp.config.policy.ms.policyNamePrefix=Config_MS_
170clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
171clamp.config.policy.base.policyNamePrefix=Config_
172clamp.config.policy.op.type=BRMS_Param
173
174clamp.config.import.tosca.model=false
175clamp.config.tosca.policyTypes=tca
176clamp.config.tosca.filePath=/tmp/tosca-models
177
178# TCA MicroService Policy request build properties
179#
180clamp.config.tca.policyid.prefix=DCAE.Config_
181clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
182clamp.config.tca.template=classpath:/clds/templates/tca-template.json
183clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
184
185#
186#
187# Operational Policy request build properties
188#
189clamp.config.op.policyDescription=from clds
190# default
191clamp.config.op.templateName=ClosedLoopControlName
192clamp.config.op.operationTopic=APPC-CL
193clamp.config.op.notificationTopic=POLICY-CL-MGT
194clamp.config.op.controller=amsterdam
195clamp.config.op.policy.appc=APPC
196#
197# Sdc service properties
198#
199clamp.config.sdc.csarFolder = ${project.build.directory}/sdc-tests
200clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
201#
202clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
203#
204# if action.test.override is true, then any action will be marked as test=true (even if incoming action request had test=false); otherwise, test flag will be unchanged on the action request
205clamp.config.action.test.override=false
206# if action.insert.test.event is true, then insert event even if the action is set to test
207clamp.config.action.insert.test.event=false
208clamp.config.clds.service.cache.invalidate.after.seconds=120
209
210#DCAE Inventory Url Properties
211clamp.config.dcae.inventory.url=http://localhost:${docker.http-cache.port.host}
212clamp.config.dcae.intentory.retry.interval=100
213clamp.config.dcae.intentory.retry.limit=1
214
215#DCAE Dispatcher Url Properties
216clamp.config.dcae.dispatcher.url=http://localhost:${docker.http-cache.port.host}
217clamp.config.dcae.dispatcher.retry.interval=100
218clamp.config.dcae.dispatcher.retry.limit=1
219
220#DCAE Deployment Url Properties
221clamp.config.dcae.deployment.url=http4://localhost:${docker.http-cache.port.host}
222clamp.config.dcae.deployment.userName=test
223clamp.config.dcae.deployment.password=test
224
225#Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
226clamp.config.security.permission.type.cl=permission-type-cl
227clamp.config.security.permission.type.cl.manage=permission-type-cl-manage
228clamp.config.security.permission.type.cl.event=permission-type-cl-event
229clamp.config.security.permission.type.filter.vf=permission-type-filter-vf
230clamp.config.security.permission.type.template=permission-type-template
231clamp.config.security.permission.type.tosca=permission-type-tosca
232#This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
233clamp.config.security.permission.instance=dev
sebdet279a9e72018-12-19 17:33:37 +0100234clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal