blob: 02acf184b11703631980d473a52fecd095662413 [file] [log] [blame]
xg353y054f1d12018-07-23 16:02:28 +02001###
2# ============LICENSE_START=======================================================
3# ONAP CLAMP
4# ================================================================================
ChrisC76c74f52019-03-26 14:28:39 +01005# Copyright (C) 2017-2019 AT&T Intellectual Property. All rights
xg353y054f1d12018-07-23 16:02:28 +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#
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
33### server.port=8080
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### --------------------------------------------
57server.port=8443
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020058## Config part for Server certificates
59# Can be a classpath parameter instead of file:/
60server.ssl.key-store=classpath:/clds/aaf/org.onap.clamp.p12
ChrisC989f4062019-04-05 16:24:13 +020061server.ssl.key-store-password=China in the Spring
62server.ssl.key-password=China in the Spring
xg353y054f1d12018-07-23 16:02:28 +020063server.ssl.key-store-type=PKCS12
xg353y054f1d12018-07-23 16:02:28 +020064server.ssl.key-alias=clamp@clamp.onap.org
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020065
66## Config part for Client certificates
sebdetf1177562018-09-03 11:23:13 +020067server.ssl.client-auth=want
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020068server.ssl.trust-store=classpath:/clds/aaf/truststoreONAPall.jks
69server.ssl.trust-store-password=changeit
70
xg353y054f1d12018-07-23 16:02:28 +020071server.http-to-https-redirection.port=8080
72
73server.servlet.context-path=/
74#Modified engine-rest applicationpath
75spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller
Krysiak Adamcdfe48c2019-01-29 15:59:00 +010076spring.http.converters.preferred-json-mapper=gson
xg353y054f1d12018-07-23 16:02:28 +020077
78#The max number of active threads in this pool
79server.tomcat.max-threads=200
80#The minimum number of threads always kept alive
81server.tomcat.min-Spare-Threads=25
82#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
83server.tomcat.max-idle-time=60000
84
85#Servlet context parameters
86server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
87
88camel.springboot.consumer-template-cache-size=1000
89camel.springboot.producer-template-cache-size=1000
sebdet86bf8ee2018-09-05 18:07:57 +020090camel.springboot.jmx-enabled=true
xg353y054f1d12018-07-23 16:02:28 +020091camel.defaultthreadpool.poolsize=10
92camel.defaultthreadpool.maxpoolsize=20
93camel.defaultthreadpool.maxqueuesize=1000
94camel.defaultthreadpool.keepaliveTime=60
95camel.defaultthreadpool.rejectpolicy=CallerRuns
96#camel.springboot.xmlRoutes = false
97camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
98camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
99#camel.springboot.typeConversion = false
100
101#clds datasource connection details
102spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
sebdeta6649942018-12-11 12:39:11 +0100103spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
xg353y054f1d12018-07-23 16:02:28 +0200104spring.datasource.cldsdb.username=clds
105spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
106spring.datasource.cldsdb.validationQuery=SELECT 1
107spring.datasource.cldsdb.validationQueryTimeout=20000
108spring.datasource.cldsdb.validationInterval=30000
109spring.datasource.cldsdb.testWhileIdle = true
110spring.datasource.cldsdb.minIdle = 0
111spring.datasource.cldsdb.initialSize=0
112# Automatically test whether a connection provided is good or not
113spring.datasource.cldsdb.testOnBorrow=true
114spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
115
sebdetc2bcf2a2019-02-22 08:16:26 +0100116spring.jpa.properties.javax.persistence.schema-generation.database.action=none
117#spring.jpa.properties.javax.persistence.schema-generation.create-source=metadata
118#spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
119#spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql
120# disable Hibernate DDL generation because the schema will be generated from a sql script
121spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
122spring.jpa.properties.hibernate.ddl-auto=validate
123spring.jpa.properties.hibernate.hbm2ddl.delimiter=;
124spring.jpa.properties.hibernate.format_sql=true
125spring.jpa.properties.hibernate.use-new-id-generator-mappings=true
126
127# Whether to enable logging of SQL statements.
128spring.jpa.show-sql=true
129
xg353y054f1d12018-07-23 16:02:28 +0200130#Async Executor default Parameters
131async.core.pool.size=10
132async.max.pool.size=20
133async.queue.capacity=500
134
Determe, Sebastien (sd378r)499e4e82018-08-09 17:14:09 +0200135#For EELF logback file
sebdetf1177562018-09-03 11:23:13 +0200136#clamp.config.logback.path=
137clamp.config.logback.filename=logback-default.xml
Determe, Sebastien (sd378r)499e4e82018-08-09 17:14:09 +0200138#The log folder that will be used in logback.xml file
sebdet8ad29212018-12-14 11:56:22 +0100139clamp.config.log.path=/var/log/onap/clamp
xg353y054f1d12018-07-23 16:02:28 +0200140clamp.config.files.systemProperties=classpath:/system.properties
141clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
142clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
143clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
144
145# Properties for Clamp
146# DCAE request build properties
147#
148clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
xg353y054f1d12018-07-23 16:02:28 +0200149clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
150#
xg353y054f1d12018-07-23 16:02:28 +0200151#
152# Configuration Settings for Policy Engine Components
xg353ya6d09fb2019-03-28 10:05:25 +0100153clamp.config.policy.url=http://policy.api.simpledemo.onap.org:8081/pdp/
154clamp.config.policy.userName=test
155clamp.config.policy.password=test
xg353y054f1d12018-07-23 16:02:28 +0200156clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
157clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
158clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123
159clamp.config.policy.notificationType=websocket
160clamp.config.policy.notificationUebServers=localhost
161clamp.config.policy.notificationTopic=PDPD-CONFIGURATION
162clamp.config.policy.clientId=python
163# base64 encoding
164
165clamp.config.policy.clientKey=dGVzdA==
166#DEVL for development
167#TEST for Test environments
168#PROD for prod environments
169clamp.config.policy.policyEnvironment=TEST
170# General Policy request properties
171#
172clamp.config.policy.onap.name=DCAE
173clamp.config.policy.pdp.group=default
174clamp.config.policy.ms.type=MicroService
175clamp.config.policy.ms.policyNamePrefix=Config_MS_
176clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
177clamp.config.policy.base.policyNamePrefix=Config_
178clamp.config.policy.op.type=BRMS_Param
179
sebdet8122a242018-11-30 19:11:53 +0100180clamp.config.import.tosca.model=true
181clamp.config.tosca.policyTypes=tca
182clamp.config.tosca.filePath=/tmp/tosca-models
xg353y054f1d12018-07-23 16:02:28 +0200183
184# TCA MicroService Policy request build properties
185#
186clamp.config.tca.policyid.prefix=DCAE.Config_
187clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
188clamp.config.tca.template=classpath:/clds/templates/tca-template.json
189clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
190
191#
192#
193# Operational Policy request build properties
194#
sebdet19ab2332018-09-12 18:52:39 +0200195clamp.config.op.policyDescription=from CLAMP
xg353y054f1d12018-07-23 16:02:28 +0200196# default
197clamp.config.op.templateName=ClosedLoopControlName
198clamp.config.op.operationTopic=APPC-CL
199clamp.config.op.notificationTopic=POLICY-CL-MGT
200clamp.config.op.controller=amsterdam
201clamp.config.op.policy.appc=APPC
202#
203# Sdc service properties
xg353y054f1d12018-07-23 16:02:28 +0200204clamp.config.sdc.csarFolder = /tmp/sdc-controllers
205clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
206#
207clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
xg353y054f1d12018-07-23 16:02:28 +0200208#
209# 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
210clamp.config.action.test.override=false
211# if action.insert.test.event is true, then insert event even if the action is set to test
212clamp.config.action.insert.test.event=false
213clamp.config.clds.service.cache.invalidate.after.seconds=120
214
215#DCAE Inventory Url Properties
216clamp.config.dcae.inventory.url=http://dcae.api.simpledemo.onap.org:8080
217clamp.config.dcae.intentory.retry.interval=10000
sebdet19ab2332018-09-12 18:52:39 +0200218clamp.config.dcae.intentory.retry.limit=5
xg353y054f1d12018-07-23 16:02:28 +0200219
220#DCAE Dispatcher Url Properties
221clamp.config.dcae.dispatcher.url=http://dcae.api.simpledemo.onap.org:8188
sebdet19ab2332018-09-12 18:52:39 +0200222clamp.config.dcae.dispatcher.retry.interval=20000
223clamp.config.dcae.dispatcher.retry.limit=30
xg353y054f1d12018-07-23 16:02:28 +0200224
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=org.onap.clamp.clds.cl
227clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage
xg353ya9be95f2019-03-11 13:47:22 +0100228clamp.config.security.permission.type.cl.event=org.onap.clamp.clds.cl.event
xg353y054f1d12018-07-23 16:02:28 +0200229clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf
230clamp.config.security.permission.type.template=org.onap.clamp.clds.template
sebdet86bf8ee2018-09-05 18:07:57 +0200231clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca
xg353y054f1d12018-07-23 16:02:28 +0200232#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
xg353y054f1d12018-07-23 16:02:28 +0200235
236#AAF related parameters
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +0200237clamp.config.cadi.keyFile=classpath:/clds/aaf/org.onap.clamp.keyfile
xg353y054f1d12018-07-23 16:02:28 +0200238clamp.config.cadi.cadiLoglevel=DEBUG
ChrisC989f4062019-04-05 16:24:13 +0200239clamp.config.cadi.cadiLatitude=10
240clamp.config.cadi.cadiLongitude=10
sebdetdfd02c62018-10-05 12:55:46 +0200241clamp.config.cadi.aafLocateUrl=https://aaf.api.simpledemo.onap.org:8095
xg353y054f1d12018-07-23 16:02:28 +0200242clamp.config.cadi.cadiKeystorePassword=enc:V_kq_EwDNb4itWp_lYfDGXIWJzemHGkhkZOxAQI9IHs
243clamp.config.cadi.cadiTruststorePassword=enc:Mj0YQqNCUKbKq2lPp1kTFQWeqLxaBXKNwd5F1yB1ukf
244#clamp.config.cadi.oauthTokenUrl=https://AAF_LOCATE_URL/AAF_NS.token:2.0/token
245#clamp.config.cadi.oauthIntrospectUrll=https://AAF_LOCATE_URL/AAF_NS.introspect:2.0/introspect
246clamp.config.cadi.aafEnv=DEV
247clamp.config.cadi.aafUrl=https://AAF_LOCATE_URL/AAF_NS.service:2.0
ChrisC989f4062019-04-05 16:24:13 +0200248clamp.config.cadi.cadiX509Issuers=CN=intermediateCA_9, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US