Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 1 | ###
|
| 2 | # ============LICENSE_START=======================================================
|
| 3 | # ONAP CLAMP
|
| 4 | # ================================================================================
|
Determe, Sebastien (sd378r) | 7e44fa7 | 2018-02-07 10:11:30 +0100 | [diff] [blame] | 5 | # Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 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 |
|
| 24 | info.build.artifact=@project.artifactId@
|
| 25 | info.build.name=@project.name@
|
| 26 | info.build.description=@project.description@
|
| 27 | info.build.version=@project.version@
|
| 28 |
|
| 29 | ### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).
|
eh552t | 1fc37da | 2017-08-31 15:22:00 +0200 | [diff] [blame] | 30 | ### (See below for the parameter 'server.http.port' if you want to have both enabled)
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 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
|
eh552t | 1fc37da | 2017-08-31 15:22:00 +0200 | [diff] [blame] | 34 | ### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 35 | #server.ssl.key-store=file:/tmp/mykey.jks
|
| 36 | #server.ssl.key-store-password=pass
|
| 37 | #server.ssl.key-password=pass
|
| 38 |
|
eh552t | 1fc37da | 2017-08-31 15:22:00 +0200 | [diff] [blame] | 39 | ### In order to be user friendly when HTTPS is enabled,
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 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 |
|
| 63 | server.contextPath=/
|
| 64 | #Modified engine-rest applicationpath
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 65 | spring.profiles.active=clamp-default,clamp-spring-authentication
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 66 |
|
| 67 | #The max number of active threads in this pool
|
| 68 | server.tomcat.max-threads=200
|
| 69 | #The minimum number of threads always kept alive
|
| 70 | server.tomcat.min-Spare-Threads=25
|
| 71 | #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
|
| 72 | server.tomcat.max-idle-time=60000
|
| 73 |
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 74 | #Servlet context parameters
|
| 75 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
|
| 76 |
|
| 77 | camel.springboot.consumer-template-cache-size=1000
|
| 78 | camel.springboot.producer-template-cache-size=1000
|
Determe, Sebastien (sd378r) | 7c08374 | 2018-02-14 15:31:55 +0100 | [diff] [blame] | 79 | camel.springboot.jmx-enabled=false
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 80 | camel.defaultthreadpool.poolsize=10
|
| 81 | camel.defaultthreadpool.maxpoolsize=20
|
| 82 | camel.defaultthreadpool.maxqueuesize=1000
|
| 83 | camel.defaultthreadpool.keepaliveTime=60
|
| 84 | camel.defaultthreadpool.rejectpolicy=CallerRuns
|
Determe, Sebastien (sd378r) | 7c08374 | 2018-02-14 15:31:55 +0100 | [diff] [blame] | 85 | #camel.springboot.xmlRoutes = false
|
| 86 | camel.springboot.xmlRoutes=classpath:/clds/camel/*.xml
|
| 87 | #camel.springboot.typeConversion = false
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 88 |
|
| 89 | #clds datasource connection details
|
Determe, Sebastien (sd378r) | ff1b297 | 2017-09-13 16:21:38 +0200 | [diff] [blame] | 90 | spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
|
Determe, Sebastien (sd378r) | 445a2a4 | 2018-02-21 15:10:40 +0100 | [diff] [blame] | 91 | spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 92 | spring.datasource.cldsdb.username=clds
|
Determe, Sebastien (sd378r) | 34400ee | 2017-11-16 13:22:49 +0100 | [diff] [blame] | 93 | spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 94 | spring.datasource.cldsdb.validationQuery=SELECT 1
|
| 95 | spring.datasource.cldsdb.validationQueryTimeout=20000
|
Determe, Sebastien (sd378r) | ff1b297 | 2017-09-13 16:21:38 +0200 | [diff] [blame] | 96 | spring.datasource.cldsdb.validationInterval=30000
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 97 | spring.datasource.cldsdb.testWhileIdle = true
|
Determe, Sebastien (sd378r) | ff1b297 | 2017-09-13 16:21:38 +0200 | [diff] [blame] | 98 | spring.datasource.cldsdb.minIdle = 0
|
| 99 | spring.datasource.cldsdb.initialSize=0
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 100 | # Automatically test whether a connection provided is good or not
|
| 101 | spring.datasource.cldsdb.testOnBorrow=true
|
Determe, Sebastien (sd378r) | ff1b297 | 2017-09-13 16:21:38 +0200 | [diff] [blame] | 102 | spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 103 |
|
| 104 | #Async Executor default Parameters
|
| 105 | async.core.pool.size=10
|
| 106 | async.max.pool.size=20
|
| 107 | async.queue.capacity=500
|
| 108 |
|
Determe, Sebastien (sd378r) | 0249040 | 2018-03-07 13:07:47 +0100 | [diff] [blame] | 109 | clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties
|
| 110 | clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
|
Determe, Sebastien (sd378r) | 32eaf1e | 2018-03-05 17:46:49 +0100 | [diff] [blame] | 111 | clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
|
Determe, Sebastien (sd378r) | 0249040 | 2018-03-07 13:07:47 +0100 | [diff] [blame] | 112 | clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 113 |
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 114 | # Properties for Clamp
|
| 115 | # DCAE request build properties
|
| 116 | #
|
| 117 | clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
|
| 118 | clamp.config.dcae.decode.service_ids=classpath:/clds/templates/dcae-decode-service_ids.json
|
| 119 | clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
|
| 120 | #
|
| 121 | # SDC request blueprint properties
|
| 122 | #
|
| 123 | clamp.config.sdc.template=classpath:/clds/templates/sdc-template.json
|
| 124 | clamp.config.sdc.decode.service_ids=classpath:/clds/templates/sdc-decode-service_ids.json
|
| 125 | #
|
| 126 | #
|
| 127 | # General Policy request properties
|
| 128 | #
|
| 129 | clamp.config.policy.onap.name=DCAE
|
| 130 | clamp.config.policy.pdp.group=default
|
| 131 | clamp.config.policy.ms.type=MicroService
|
| 132 | clamp.config.policy.ms.policyNamePrefix=Config_MS_
|
| 133 | clamp.config.policy.op.type=BRMS_Param
|
| 134 | clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
|
| 135 |
|
| 136 | # TCA MicroService Policy request build properties
|
| 137 | #
|
| 138 | clamp.config.tca.policyid.prefix=DCAE.Config_
|
| 139 | clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
|
| 140 | clamp.config.tca.template=classpath:/clds/templates/tca-template.json
|
| 141 | clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
|
| 142 |
|
| 143 | #
|
| 144 | #
|
| 145 | # Operational Policy request build properties
|
| 146 | #
|
| 147 | clamp.config.op.policyDescription=from clds
|
| 148 | # default
|
| 149 | clamp.config.op.templateName=ClosedLoopvUSP
|
| 150 | clamp.config.op.operationTopic=APPC-CL
|
| 151 | clamp.config.op.notificationTopic=POLICY-CL-MGT
|
| 152 | clamp.config.op.controller=amsterdam
|
| 153 | clamp.config.op.policy.appc=APPC
|
| 154 | # by service: vSCP
|
| 155 | clamp.config.op.templateName.vSCP=ClosedLoopTemplate
|
| 156 | clamp.config.op.controller.vSCP=1607-f5fw
|
| 157 | clamp.config.op.eNodeB.templateName=ClosedLoopControlName
|
| 158 | clamp.config.op.eNodeB.operationTopic=com.onap.sdnr.RanCLRequest-v00
|
| 159 | clamp.config.op.eNodeB.notificationTopic=com.onap-policy.IST-ENODEB-CL
|
| 160 | clamp.config.op.eNodeB.controller=amsterdam
|
| 161 | clamp.config.op.eNodeB.recipe=classpath:/clds/templates/op-eNodeB-recipe.json
|
| 162 | clamp.config.op.eNodeB.timeWindow=35
|
| 163 | clamp.config.op.eNodeB.limit=2
|
| 164 | clamp.config.op.eNodeB.period=10s
|
| 165 | #
|
| 166 | # Sdc service properties
|
| 167 | clamp.config.sdc.catalog.url=http://sdc.api.simpledemo.onap.org:8080/sdc/v1/catalog/
|
| 168 | clamp.config.sdc.hostUrl=http://sdc.api.simpledemo.onap.org:8080
|
| 169 | clamp.config.sdc.serviceUrl=http://sdc.api.simpledemo.onap.org:8080/sdc/v1/catalog/services
|
| 170 | clamp.config.sdc.serviceUsername=clamp
|
| 171 | clamp.config.sdc.servicePassword=b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981
|
| 172 | clamp.config.sdc.artifactLabel=blueprintclampcockpit
|
| 173 | clamp.config.sdc.sdcX-InstanceID=CLAMP
|
| 174 | clamp.config.sdc.artifactType=DCAE_INVENTORY_BLUEPRINT
|
| 175 | clamp.config.sdc.locationArtifactLabel=locationclampcockpit
|
| 176 | clamp.config.sdc.locationArtifactType=DCAE_INVENTORY_JSON
|
| 177 | clamp.config.sdc.InstanceID=X-ECOMP-InstanceID
|
| 178 | clamp.config.sdc.header.requestId = X-ECOMP-RequestID
|
| 179 | #
|
Determe, Sebastien (sd378r) | 2029624 | 2018-03-12 19:37:34 +0100 | [diff] [blame] | 180 | clamp.config.sdc.csarFolder = /tmp/sdc-controllers
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 181 | #
|
| 182 | clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
|
| 183 | clamp.config.ui.alarm.default=classpath:/clds/templates/ui-alarm-default.json
|
| 184 | #
|
| 185 | # 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
|
| 186 | clamp.config.action.test.override=false
|
| 187 | # if action.insert.test.event is true, then insert event even if the action is set to test
|
| 188 | clamp.config.action.insert.test.event=false
|
| 189 | clamp.config.clds.service.cache.invalidate.after.seconds=120
|
| 190 |
|
| 191 | #DCAE Inventory Url Properties
|
| 192 | clamp.config.dcae.inventory.url=http://dcae.api.simpledemo.onap.org:8080
|
| 193 |
|
| 194 | #DCAE Dispatcher Url Properties
|
| 195 | clamp.config.dcae.dispatcher.url=http://dcae.api.simpledemo.onap.org:8080
|
| 196 | clamp.config.dcae.header.requestId = X-ECOMP-RequestID
|
| 197 |
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 198 | #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 199 | clamp.config.security.permission.type.cl=permission-type-cl
|
| 200 | clamp.config.security.permission.type.cl.manage=permission-type-cl-manage
|
| 201 | clamp.config.security.permission.type.cl.event=permission-type-cl-event
|
| 202 | clamp.config.security.permission.type.filter.vf=permission-type-filter-vf
|
| 203 | clamp.config.security.permission.type.template=permission-type-template
|
Determe, Sebastien (sd378r) | f527ac9 | 2017-08-29 04:12:52 -0700 | [diff] [blame] | 204 | #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 205 | clamp.config.security.permission.instance=dev |