blob: b97d643642ea5723cce9543f93d3b979b603e566 [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# ================================================================================
Krysiak Adam09db2382019-04-23 16:29:22 +02008# Modifications copyright (c) 2019 Nokia
9# ================================================================================\
xg353y054f1d12018-07-23 16:02:28 +020010# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
13#
14# http://www.apache.org/licenses/LICENSE-2.0
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
21# ============LICENSE_END============================================
22# ===================================================================
23#
24###
25
26info.build.artifact=@project.artifactId@
27info.build.name=@project.name@
28info.build.description=@project.description@
29info.build.version=@project.version@
30
31### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).
32### (See below for the parameter 'server.http.port' if you want to have both enabled)
33### To have only HTTP, keep the lines server.ssl.* commented
34### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location
35### server.port=8080
36### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')
37#server.ssl.key-store=file:/tmp/mykey.jks
38#server.ssl.key-store-password=pass
39#server.ssl.key-password=pass
40
41### In order to be user friendly when HTTPS is enabled,
42### you can add another HTTP port that will be automatically redirected to HTTPS
43### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)
44#server.http-to-https-redirection.port=8090
45
46### HTTP Example:
47###--------------
48### server.port=8080
49
50### HTTPS Example:
51### --------------
52### server.port=8443
53### server.ssl.key-store=file:/tmp/mykey.jks
54### server.ssl.key-store-password=mypass
55### server.ssl.key-password=mypass
56
57### HTTP (Redirected to HTTPS) and HTTPS Example:
58### --------------------------------------------
59server.port=8443
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020060## Config part for Server certificates
61# Can be a classpath parameter instead of file:/
62server.ssl.key-store=classpath:/clds/aaf/org.onap.clamp.p12
xuegao1ebfe6b2019-11-28 15:13:18 +010063server.ssl.key-store-password=enc:WWCxchk4WGBNSvuzLq3MLjMs5ObRybJtts5AI0XD1Vc
64server.ssl.key-password=enc:WWCxchk4WGBNSvuzLq3MLjMs5ObRybJtts5AI0XD1Vc
xg353y054f1d12018-07-23 16:02:28 +020065server.ssl.key-store-type=PKCS12
xg353y054f1d12018-07-23 16:02:28 +020066server.ssl.key-alias=clamp@clamp.onap.org
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020067
xuegao1ebfe6b2019-11-28 15:13:18 +010068# The key file used to decode the key store and trust store password
69# If not defined, the key store and trust store password will not be decrypted
70clamp.config.keyFile=classpath:/clds/aaf/org.onap.clamp.keyfile
71
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020072## Config part for Client certificates
sebdetf1177562018-09-03 11:23:13 +020073server.ssl.client-auth=want
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020074server.ssl.trust-store=classpath:/clds/aaf/truststoreONAPall.jks
xuegao1ebfe6b2019-11-28 15:13:18 +010075server.ssl.trust-store-password=enc:iDnPBBLq_EMidXlMa1FEuBR8TZzYxrCg66vq_XfLHdJ
Determe, Sebastien (sd378r)e1c2aab2018-08-17 17:41:15 +020076
sebdet2d526d72019-04-29 14:45:24 +020077#server.http-to-https-redirection.port=8080
xg353y054f1d12018-07-23 16:02:28 +020078
79server.servlet.context-path=/
80#Modified engine-rest applicationpath
xuegao1ebfe6b2019-11-28 15:13:18 +010081spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller-new,clamp-ssl-config
Krysiak Adamcdfe48c2019-01-29 15:59:00 +010082spring.http.converters.preferred-json-mapper=gson
xg353y054f1d12018-07-23 16:02:28 +020083
84#The max number of active threads in this pool
85server.tomcat.max-threads=200
86#The minimum number of threads always kept alive
87server.tomcat.min-Spare-Threads=25
88#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
89server.tomcat.max-idle-time=60000
90
91#Servlet context parameters
92server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
93
94camel.springboot.consumer-template-cache-size=1000
95camel.springboot.producer-template-cache-size=1000
sebdet86bf8ee2018-09-05 18:07:57 +020096camel.springboot.jmx-enabled=true
xg353y054f1d12018-07-23 16:02:28 +020097camel.defaultthreadpool.poolsize=10
98camel.defaultthreadpool.maxpoolsize=20
99camel.defaultthreadpool.maxqueuesize=1000
100camel.defaultthreadpool.keepaliveTime=60
101camel.defaultthreadpool.rejectpolicy=CallerRuns
102#camel.springboot.xmlRoutes = false
103camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
104camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
105#camel.springboot.typeConversion = false
106
107#clds datasource connection details
108spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
sebdeta6649942018-12-11 12:39:11 +0100109spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
xg353y054f1d12018-07-23 16:02:28 +0200110spring.datasource.cldsdb.username=clds
111spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
112spring.datasource.cldsdb.validationQuery=SELECT 1
113spring.datasource.cldsdb.validationQueryTimeout=20000
114spring.datasource.cldsdb.validationInterval=30000
115spring.datasource.cldsdb.testWhileIdle = true
116spring.datasource.cldsdb.minIdle = 0
117spring.datasource.cldsdb.initialSize=0
118# Automatically test whether a connection provided is good or not
119spring.datasource.cldsdb.testOnBorrow=true
120spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
121
sebdetc2bcf2a2019-02-22 08:16:26 +0100122spring.jpa.properties.javax.persistence.schema-generation.database.action=none
123#spring.jpa.properties.javax.persistence.schema-generation.create-source=metadata
124#spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
125#spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql
126# disable Hibernate DDL generation because the schema will be generated from a sql script
127spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
128spring.jpa.properties.hibernate.ddl-auto=validate
129spring.jpa.properties.hibernate.hbm2ddl.delimiter=;
130spring.jpa.properties.hibernate.format_sql=true
131spring.jpa.properties.hibernate.use-new-id-generator-mappings=true
132
133# Whether to enable logging of SQL statements.
sebdet7fc07392019-04-10 15:27:46 +0200134#spring.jpa.show-sql=true
sebdetc2bcf2a2019-02-22 08:16:26 +0100135
xg353y054f1d12018-07-23 16:02:28 +0200136#Async Executor default Parameters
137async.core.pool.size=10
138async.max.pool.size=20
139async.queue.capacity=500
140
Determe, Sebastien (sd378r)499e4e82018-08-09 17:14:09 +0200141#For EELF logback file
sebdetf1177562018-09-03 11:23:13 +0200142#clamp.config.logback.path=
143clamp.config.logback.filename=logback-default.xml
Determe, Sebastien (sd378r)499e4e82018-08-09 17:14:09 +0200144#The log folder that will be used in logback.xml file
sebdet8ad29212018-12-14 11:56:22 +0100145clamp.config.log.path=/var/log/onap/clamp
xg353y054f1d12018-07-23 16:02:28 +0200146clamp.config.files.systemProperties=classpath:/system.properties
147clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
148clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
149clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
150
151# Properties for Clamp
152# DCAE request build properties
153#
154clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
xg353y054f1d12018-07-23 16:02:28 +0200155clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
156#
xg353y054f1d12018-07-23 16:02:28 +0200157#
158# Configuration Settings for Policy Engine Components
sebdetaf8b7d72019-04-26 16:34:14 +0200159clamp.config.policy.api.url=http4://policy.api.simpledemo.onap.org:6969
160clamp.config.policy.api.userName=healthcheck
161clamp.config.policy.api.password=zb!XztG34
162clamp.config.policy.pap.url=http4://policy.api.simpledemo.onap.org:6969
163clamp.config.policy.pap.userName=healthcheck
164clamp.config.policy.pap.password=zb!XztG34
165
xg353y054f1d12018-07-23 16:02:28 +0200166clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
167clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
168clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123
169clamp.config.policy.notificationType=websocket
170clamp.config.policy.notificationUebServers=localhost
171clamp.config.policy.notificationTopic=PDPD-CONFIGURATION
172clamp.config.policy.clientId=python
173# base64 encoding
174
175clamp.config.policy.clientKey=dGVzdA==
176#DEVL for development
177#TEST for Test environments
178#PROD for prod environments
179clamp.config.policy.policyEnvironment=TEST
180# General Policy request properties
181#
182clamp.config.policy.onap.name=DCAE
183clamp.config.policy.pdp.group=default
184clamp.config.policy.ms.type=MicroService
185clamp.config.policy.ms.policyNamePrefix=Config_MS_
186clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
187clamp.config.policy.base.policyNamePrefix=Config_
188clamp.config.policy.op.type=BRMS_Param
189
sebdet8122a242018-11-30 19:11:53 +0100190clamp.config.import.tosca.model=true
191clamp.config.tosca.policyTypes=tca
192clamp.config.tosca.filePath=/tmp/tosca-models
xg353y054f1d12018-07-23 16:02:28 +0200193
194# TCA MicroService Policy request build properties
195#
196clamp.config.tca.policyid.prefix=DCAE.Config_
197clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
198clamp.config.tca.template=classpath:/clds/templates/tca-template.json
199clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
200
201#
202#
203# Operational Policy request build properties
204#
sebdet19ab2332018-09-12 18:52:39 +0200205clamp.config.op.policyDescription=from CLAMP
xg353y054f1d12018-07-23 16:02:28 +0200206# default
207clamp.config.op.templateName=ClosedLoopControlName
208clamp.config.op.operationTopic=APPC-CL
209clamp.config.op.notificationTopic=POLICY-CL-MGT
210clamp.config.op.controller=amsterdam
211clamp.config.op.policy.appc=APPC
212#
213# Sdc service properties
xg353y054f1d12018-07-23 16:02:28 +0200214clamp.config.sdc.csarFolder = /tmp/sdc-controllers
215clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
216#
217clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
xg353y054f1d12018-07-23 16:02:28 +0200218#
219# 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
220clamp.config.action.test.override=false
221# if action.insert.test.event is true, then insert event even if the action is set to test
222clamp.config.action.insert.test.event=false
223clamp.config.clds.service.cache.invalidate.after.seconds=120
224
225#DCAE Inventory Url Properties
sebdet74303b72019-10-08 17:53:08 +0200226clamp.config.dcae.inventory.url=http4://dcae.api.simpledemo.onap.org:8080
xg353y054f1d12018-07-23 16:02:28 +0200227clamp.config.dcae.intentory.retry.interval=10000
sebdet19ab2332018-09-12 18:52:39 +0200228clamp.config.dcae.intentory.retry.limit=5
xg353y054f1d12018-07-23 16:02:28 +0200229
xg353y39d82de2019-04-26 13:26:25 +0200230#DCAE Deployment Url Properties
231clamp.config.dcae.deployment.url=http4://dcae.api.simpledemo.onap.org:8188
232clamp.config.dcae.deployment.userName=test
233clamp.config.dcae.deployment.password=test
234
xg353y054f1d12018-07-23 16:02:28 +0200235#Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
236clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl
237clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage
xg353ya9be95f2019-03-11 13:47:22 +0100238clamp.config.security.permission.type.cl.event=org.onap.clamp.clds.cl.event
xg353y054f1d12018-07-23 16:02:28 +0200239clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf
240clamp.config.security.permission.type.template=org.onap.clamp.clds.template
sebdet86bf8ee2018-09-05 18:07:57 +0200241clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca
xg353y054f1d12018-07-23 16:02:28 +0200242#This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
243clamp.config.security.permission.instance=dev
sebdet279a9e72018-12-19 17:33:37 +0100244clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal
xg353y054f1d12018-07-23 16:02:28 +0200245
246#AAF related parameters
xg353y054f1d12018-07-23 16:02:28 +0200247clamp.config.cadi.cadiLoglevel=DEBUG
ChrisC989f4062019-04-05 16:24:13 +0200248clamp.config.cadi.cadiLatitude=10
249clamp.config.cadi.cadiLongitude=10
sebdetdcc4bdc2019-10-15 14:04:00 +0200250clamp.config.cadi.aafLocateUrl=https://aaf-locate:8095
sebdetdcc4bdc2019-10-15 14:04:00 +0200251clamp.config.cadi.oauthTokenUrl= https://AAF_LOCATE_URL/locate/onap.org.osaaf.aaf.token:2.1/token
252clamp.config.cadi.oauthIntrospectUrll=https://AAF_LOCATE_URL/locate/onap.org.osaaf.aaf.introspect:2.1/introspect
xg353y054f1d12018-07-23 16:02:28 +0200253clamp.config.cadi.aafEnv=DEV
sebdet56f5c142019-08-27 09:20:16 -0700254clamp.config.cadi.aafUrl=https://AAF_LOCATE_URL/onap.org.osaaf.aaf.service:2.1
sebdetdcc4bdc2019-10-15 14:04:00 +0200255clamp.config.cadi.cadiX509Issuers=CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_9, OU=OSAAF, O=ONAP, C=US