blob: fd61badd8d64700d8fa272fc3fc190e53df31c91 [file] [log] [blame]
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -07001###
2# ============LICENSE_START=======================================================
3# ONAP CLAMP
4# ================================================================================
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +01005# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -07006# 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# ===================================================================
Determe, Sebastien (sd378r)7382d522018-04-24 18:09:55 +020021#
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070022###
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).
eh552t1fc37da2017-08-31 15:22:00 +020030### (See below for the parameter 'server.http.port' if you want to have both enabled)
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070031### 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
xg353ye6409552018-05-08 16:21:39 +020033### server.port=8080
eh552t1fc37da2017-08-31 15:22:00 +020034### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070035#server.ssl.key-store=file:/tmp/mykey.jks
36#server.ssl.key-store-password=pass
37#server.ssl.key-password=pass
38
eh552t1fc37da2017-08-31 15:22:00 +020039### In order to be user friendly when HTTPS is enabled,
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070040### 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### --------------------------------------------
xg353ye6409552018-05-08 16:21:39 +020057server.port=8443
58server.ssl.client-auth=want
59server.ssl.key-store=file:/opt/clamp/config/clamp@clamp.onap.org.p12
60server.ssl.key-store-password=China in the Spring
61server.ssl.key-password=China in the Spring
62server.ssl.key-store-type=PKCS12
63server.ssl.trust=/opt/clamp/config/truststoreONAP.p12
64server.ssl.trust-pass=changeit
65server.ssl.trust-type=PKCS12
66server.ssl.key-alias=clamp@clamp.onap.org
67server.http-to-https-redirection.port=8080
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070068
69server.contextPath=/
70#Modified engine-rest applicationpath
xg353ye6409552018-05-08 16:21:39 +020071spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070072
73#The max number of active threads in this pool
74server.tomcat.max-threads=200
75#The minimum number of threads always kept alive
76server.tomcat.min-Spare-Threads=25
77#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
78server.tomcat.max-idle-time=60000
79
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070080#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
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +010085camel.springboot.jmx-enabled=false
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070086camel.defaultthreadpool.poolsize=10
87camel.defaultthreadpool.maxpoolsize=20
88camel.defaultthreadpool.maxqueuesize=1000
89camel.defaultthreadpool.keepaliveTime=60
90camel.defaultthreadpool.rejectpolicy=CallerRuns
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +010091#camel.springboot.xmlRoutes = false
92camel.springboot.xmlRoutes=classpath:/clds/camel/*.xml
93#camel.springboot.typeConversion = false
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070094
95#clds datasource connection details
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +020096spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
Determe, Sebastien (sd378r)445a2a42018-02-21 15:10:40 +010097spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -070098spring.datasource.cldsdb.username=clds
Determe, Sebastien (sd378r)34400ee2017-11-16 13:22:49 +010099spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700100spring.datasource.cldsdb.validationQuery=SELECT 1
101spring.datasource.cldsdb.validationQueryTimeout=20000
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200102spring.datasource.cldsdb.validationInterval=30000
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700103spring.datasource.cldsdb.testWhileIdle = true
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200104spring.datasource.cldsdb.minIdle = 0
105spring.datasource.cldsdb.initialSize=0
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700106# Automatically test whether a connection provided is good or not
107spring.datasource.cldsdb.testOnBorrow=true
Determe, Sebastien (sd378r)ff1b2972017-09-13 16:21:38 +0200108spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700109
110#Async Executor default Parameters
111async.core.pool.size=10
112async.max.pool.size=20
113async.queue.capacity=500
114
Determe, Sebastien (sd378r)12d39d32018-05-15 13:52:47 +0200115clamp.config.log.path=/var/log/onap
116clamp.config.files.systemProperties=classpath:/system.properties
Determe, Sebastien (sd378r)02490402018-03-07 13:07:47 +0100117clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
Determe, Sebastien (sd378r)32eaf1e2018-03-05 17:46:49 +0100118clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
Determe, Sebastien (sd378r)02490402018-03-07 13:07:47 +0100119clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700120
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100121# Properties for Clamp
122# DCAE request build properties
123#
124clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
125clamp.config.dcae.decode.service_ids=classpath:/clds/templates/dcae-decode-service_ids.json
126clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
127#
128# SDC request blueprint properties
129#
130clamp.config.sdc.template=classpath:/clds/templates/sdc-template.json
131clamp.config.sdc.decode.service_ids=classpath:/clds/templates/sdc-decode-service_ids.json
132#
133#
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200134# Configuration Settings for Policy Engine Components
xg353yeb3342f2018-04-20 16:44:09 +0200135clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
136clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
137clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200138clamp.config.policy.notificationType=websocket
139clamp.config.policy.notificationUebServers=localhost
Determe, Sebastien (sd378r)741faeb2018-04-25 15:05:04 +0200140clamp.config.policy.notificationTopic=PDPD-CONFIGURATION
141clamp.config.policy.clientId=python
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200142# base64 encoding
143
Determe, Sebastien (sd378r)741faeb2018-04-25 15:05:04 +0200144clamp.config.policy.clientKey=dGVzdA==
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200145#DEVL for development
146#TEST for Test environments
147#PROD for prod environments
148clamp.config.policy.policyEnvironment=TEST
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100149# General Policy request properties
150#
151clamp.config.policy.onap.name=DCAE
152clamp.config.policy.pdp.group=default
153clamp.config.policy.ms.type=MicroService
154clamp.config.policy.ms.policyNamePrefix=Config_MS_
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100155clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
Determe, Sebastien (sd378r)d39df762018-04-18 17:51:30 +0200156clamp.config.policy.base.policyNamePrefix=Config_
157clamp.config.policy.op.type=BRMS_Param
158
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100159
160# TCA MicroService Policy request build properties
161#
162clamp.config.tca.policyid.prefix=DCAE.Config_
163clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
164clamp.config.tca.template=classpath:/clds/templates/tca-template.json
165clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
166
167#
168#
169# Operational Policy request build properties
170#
171clamp.config.op.policyDescription=from clds
172# default
Determe, Sebastien (sd378r)d1a78182018-04-27 13:57:11 +0200173clamp.config.op.templateName=ClosedLoopControlName
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100174clamp.config.op.operationTopic=APPC-CL
175clamp.config.op.notificationTopic=POLICY-CL-MGT
176clamp.config.op.controller=amsterdam
177clamp.config.op.policy.appc=APPC
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100178#
179# Sdc service properties
xg353yeb3342f2018-04-20 16:44:09 +0200180clamp.config.sdc.catalog.url=http://sdc.api.simpledemo.onap.org:8080/sdc/v1/catalog/
181clamp.config.sdc.hostUrl=http://sdc.api.simpledemo.onap.org:8080
182clamp.config.sdc.serviceUrl=http://sdc.api.simpledemo.onap.org:8080/sdc/v1/catalog/services
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100183clamp.config.sdc.serviceUsername=clamp
184clamp.config.sdc.servicePassword=b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981
185clamp.config.sdc.artifactLabel=blueprintclampcockpit
186clamp.config.sdc.sdcX-InstanceID=CLAMP
187clamp.config.sdc.artifactType=DCAE_INVENTORY_BLUEPRINT
188clamp.config.sdc.locationArtifactLabel=locationclampcockpit
189clamp.config.sdc.locationArtifactType=DCAE_INVENTORY_JSON
190clamp.config.sdc.InstanceID=X-ECOMP-InstanceID
191clamp.config.sdc.header.requestId = X-ECOMP-RequestID
192#
Determe, Sebastien (sd378r)20296242018-03-12 19:37:34 +0100193clamp.config.sdc.csarFolder = /tmp/sdc-controllers
Determe, Sebastien (sd378r)ccb71522018-03-16 19:49:13 +0100194clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100195#
196clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
197clamp.config.ui.alarm.default=classpath:/clds/templates/ui-alarm-default.json
198#
199# 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
200clamp.config.action.test.override=false
201# if action.insert.test.event is true, then insert event even if the action is set to test
202clamp.config.action.insert.test.event=false
203clamp.config.clds.service.cache.invalidate.after.seconds=120
204
205#DCAE Inventory Url Properties
xg353yeb3342f2018-04-20 16:44:09 +0200206clamp.config.dcae.inventory.url=http://dcae.api.simpledemo.onap.org:8080
xg353y4fd88312018-04-11 15:55:45 +0200207clamp.config.dcae.intentory.retry.interval=10000
208clamp.config.dcae.intentory.retry.limit=3
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100209
210#DCAE Dispatcher Url Properties
Determe, Sebastien (sd378r)410fe9c2018-05-03 09:55:03 +0200211clamp.config.dcae.dispatcher.url=http://dcae.api.simpledemo.onap.org:8188
Determe, Sebastien (sd378r)32711652018-05-08 16:30:12 +0200212clamp.config.dcae.dispatcher.retry.interval=10000
213clamp.config.dcae.dispatcher.retry.limit=10
Determe, Sebastien (sd378r)35c6bda2018-03-05 16:03:25 +0100214clamp.config.dcae.header.requestId = X-ECOMP-RequestID
215
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700216#Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
xg353ye6409552018-05-08 16:21:39 +0200217clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl
218clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage
219clamp.config.security.permission.type.cl.event=org.onap.clds.cl.event
220clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf
221clamp.config.security.permission.type.template=org.onap.clamp.clds.template
Determe, Sebastien (sd378r)f527ac92017-08-29 04:12:52 -0700222#This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200223clamp.config.security.permission.instance=dev
xg353ye6409552018-05-08 16:21:39 +0200224
225#AAF related parameters
226clamp.config.cadi.keyFile=/opt/clamp/config/org.onap.clamp.keyfile
227clamp.config.cadi.cadiLoglevel=INFO
228clamp.config.cadi.cadiLatitude=37.78187
229clamp.config.cadi.cadiLongitude=-122.26147
230clamp.config.cadi.aafLocateUrl=https://aaf-onap-beijing-test.osaaf.org
231clamp.config.cadi.cadiKeystorePassword=enc:V_kq_EwDNb4itWp_lYfDGXIWJzemHGkhkZOxAQI9IHs
232clamp.config.cadi.cadiTruststorePassword=enc:Mj0YQqNCUKbKq2lPp1kTFQWeqLxaBXKNwd5F1yB1ukf
233#clamp.config.cadi.oauthTokenUrl=https://AAF_LOCATE_URL/AAF_NS.token:2.0/token
234#clamp.config.cadi.oauthIntrospectUrll=https://AAF_LOCATE_URL/AAF_NS.introspect:2.0/introspect
235clamp.config.cadi.aafEnv=DEV
236clamp.config.cadi.aafUrl=https://AAF_LOCATE_URL/AAF_NS.service:2.0
237clamp.config.cadi.cadiX509Issuers=CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US