Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 1 | ###
|
| 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 | # ===================================================================
|
Determe, Sebastien (sd378r) | 7382d52 | 2018-04-24 18:09:55 +0200 | [diff] [blame] | 21 | #
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 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).
|
| 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 | ### --------------------------------------------
|
| 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 |
|
Determe, Sebastien (sd378r) | f744247 | 2018-08-03 15:52:19 +0200 | [diff] [blame] | 63 | server.servlet.context-path=/
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 64 | #Modified engine-rest applicationpath
|
Determe, Sebastien (sd378r) | 499e4e8 | 2018-08-09 17:14:09 +0200 | [diff] [blame] | 65 | spring.profiles.active=clamp-default,clamp-default-user,clamp-sdc-controller
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [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 |
|
| 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) | f744247 | 2018-08-03 15:52:19 +0200 | [diff] [blame] | 79 | # JMX enabled to have Camel Swagger runtime working
|
| 80 | camel.springboot.jmx-enabled=true
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 81 | camel.defaultthreadpool.poolsize=10
|
| 82 | camel.defaultthreadpool.maxpoolsize=20
|
| 83 | camel.defaultthreadpool.maxqueuesize=1000
|
| 84 | camel.defaultthreadpool.keepaliveTime=60
|
| 85 | camel.defaultthreadpool.rejectpolicy=CallerRuns
|
| 86 | #camel.springboot.xmlRoutes = false
|
Determe, Sebastien (sd378r) | f744247 | 2018-08-03 15:52:19 +0200 | [diff] [blame] | 87 | camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
|
| 88 | camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 89 | #camel.springboot.typeConversion = false
|
| 90 |
|
| 91 | #clds datasource connection details
|
| 92 | spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
|
| 93 | spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
|
| 94 | spring.datasource.cldsdb.username=clds
|
| 95 | spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
|
| 96 | spring.datasource.cldsdb.validationQuery=SELECT 1
|
| 97 | spring.datasource.cldsdb.validationQueryTimeout=20000
|
| 98 | spring.datasource.cldsdb.validationInterval=30000
|
| 99 | spring.datasource.cldsdb.testWhileIdle = true
|
| 100 | spring.datasource.cldsdb.minIdle = 0
|
| 101 | spring.datasource.cldsdb.initialSize=0
|
| 102 | # Automatically test whether a connection provided is good or not
|
| 103 | spring.datasource.cldsdb.testOnBorrow=true
|
| 104 | spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
|
| 105 |
|
| 106 | #Async Executor default Parameters
|
| 107 | async.core.pool.size=10
|
| 108 | async.max.pool.size=20
|
| 109 | async.queue.capacity=500
|
| 110 |
|
Determe, Sebastien (sd378r) | 499e4e8 | 2018-08-09 17:14:09 +0200 | [diff] [blame] | 111 | #For EELF logback file
|
| 112 | #com.att.eelf.logging.path=
|
| 113 | com.att.eelf.logging.file=logback-default.xml
|
| 114 | #The log folder that will be used in logback.xml file
|
Determe, Sebastien (sd378r) | 12d39d3 | 2018-05-15 13:52:47 +0200 | [diff] [blame] | 115 | clamp.config.log.path=log
|
| 116 | clamp.config.files.systemProperties=classpath:/system.properties
|
Determe, Sebastien (sd378r) | 0249040 | 2018-03-07 13:07:47 +0100 | [diff] [blame] | 117 | clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
|
Determe, Sebastien (sd378r) | 32eaf1e | 2018-03-05 17:46:49 +0100 | [diff] [blame] | 118 | clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
|
Determe, Sebastien (sd378r) | 0249040 | 2018-03-07 13:07:47 +0100 | [diff] [blame] | 119 | clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 120 |
|
| 121 | # Properties for Clamp
|
| 122 | # DCAE request build properties
|
| 123 | #
|
| 124 | clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
|
| 125 | clamp.config.dcae.decode.service_ids=classpath:/clds/templates/dcae-decode-service_ids.json
|
| 126 | clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
|
| 127 | #
|
| 128 | # SDC request blueprint properties
|
| 129 | #
|
| 130 | clamp.config.sdc.template=classpath:/clds/templates/sdc-template.json
|
| 131 | clamp.config.sdc.decode.service_ids=classpath:/clds/templates/sdc-decode-service_ids.json
|
| 132 | #
|
| 133 | #
|
Determe, Sebastien (sd378r) | 42765b2 | 2018-03-28 17:25:55 +0200 | [diff] [blame] | 134 | # Configuration Settings for Policy Engine Components
|
| 135 | clamp.config.policy.pdpUrl1=http://localhost:${docker.http-cache.port.host}/pdp/ , testpdp, alpha123
|
| 136 | clamp.config.policy.pdpUrl2=http://localhost:${docker.http-cache.port.host}/pdp/ , testpdp, alpha123
|
| 137 | clamp.config.policy.papUrl=http://localhost:${docker.http-cache.port.host}/pap/ , testpap, alpha123
|
| 138 | clamp.config.policy.notificationType=websocket
|
| 139 | clamp.config.policy.notificationUebServers=localhost
|
| 140 | clamp.config.policy.notificationTopic=
|
Determe, Sebastien (sd378r) | 741faeb | 2018-04-25 15:05:04 +0200 | [diff] [blame] | 141 | clamp.config.policy.clientId=python
|
Determe, Sebastien (sd378r) | 42765b2 | 2018-03-28 17:25:55 +0200 | [diff] [blame] | 142 | # base64 encoding
|
Determe, Sebastien (sd378r) | 741faeb | 2018-04-25 15:05:04 +0200 | [diff] [blame] | 143 | clamp.config.policy.clientKey=dGVzdA==
|
Determe, Sebastien (sd378r) | 42765b2 | 2018-03-28 17:25:55 +0200 | [diff] [blame] | 144 | #DEVL for development
|
| 145 | #TEST for Test environments
|
| 146 | #PROD for prod environments
|
| 147 | clamp.config.policy.policyEnvironment=DEVL
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 148 | # General Policy request properties
|
| 149 | #
|
| 150 | clamp.config.policy.onap.name=DCAE
|
| 151 | clamp.config.policy.pdp.group=default
|
| 152 | clamp.config.policy.ms.type=MicroService
|
| 153 | clamp.config.policy.ms.policyNamePrefix=Config_MS_
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 154 | clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
|
Determe, Sebastien (sd378r) | d39df76 | 2018-04-18 17:51:30 +0200 | [diff] [blame] | 155 | clamp.config.policy.base.policyNamePrefix=Config_
|
| 156 | clamp.config.policy.op.type=BRMS_Param
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 157 |
|
| 158 | # TCA MicroService Policy request build properties
|
| 159 | #
|
| 160 | clamp.config.tca.policyid.prefix=DCAE.Config_
|
| 161 | clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
|
| 162 | clamp.config.tca.template=classpath:/clds/templates/tca-template.json
|
| 163 | clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
|
| 164 |
|
| 165 | #
|
| 166 | #
|
| 167 | # Operational Policy request build properties
|
| 168 | #
|
| 169 | clamp.config.op.policyDescription=from clds
|
| 170 | # default
|
Determe, Sebastien (sd378r) | d1a7818 | 2018-04-27 13:57:11 +0200 | [diff] [blame] | 171 | clamp.config.op.templateName=ClosedLoopControlName
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 172 | clamp.config.op.operationTopic=APPC-CL
|
| 173 | clamp.config.op.notificationTopic=POLICY-CL-MGT
|
| 174 | clamp.config.op.controller=amsterdam
|
| 175 | clamp.config.op.policy.appc=APPC
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 176 | #
|
| 177 | # Sdc service properties
|
| 178 | clamp.config.sdc.catalog.url=http://localhost:${docker.http-cache.port.host}/sdc/v1/catalog/
|
| 179 | clamp.config.sdc.hostUrl=http://localhost:${docker.http-cache.port.host}
|
| 180 | clamp.config.sdc.serviceUrl=http://localhost:${docker.http-cache.port.host}/sdc/v1/catalog/services
|
| 181 | clamp.config.sdc.serviceUsername=clamp
|
| 182 | clamp.config.sdc.servicePassword=b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981
|
| 183 | clamp.config.sdc.artifactLabel=blueprintclampcockpit
|
| 184 | clamp.config.sdc.sdcX-InstanceID=CLAMP
|
| 185 | clamp.config.sdc.artifactType=DCAE_INVENTORY_BLUEPRINT
|
| 186 | clamp.config.sdc.locationArtifactLabel=locationclampcockpit
|
| 187 | clamp.config.sdc.locationArtifactType=DCAE_INVENTORY_JSON
|
| 188 | clamp.config.sdc.InstanceID=X-ECOMP-InstanceID
|
| 189 | clamp.config.sdc.header.requestId = X-ECOMP-RequestID
|
| 190 | #
|
Determe, Sebastien (sd378r) | 2029624 | 2018-03-12 19:37:34 +0100 | [diff] [blame] | 191 | clamp.config.sdc.csarFolder = /tmp/sdc-tests
|
Determe, Sebastien (sd378r) | ccb7152 | 2018-03-16 19:49:13 +0100 | [diff] [blame] | 192 | clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 193 | #
|
| 194 | clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
|
| 195 | clamp.config.ui.alarm.default=classpath:/clds/templates/ui-alarm-default.json
|
| 196 | #
|
| 197 | # 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
|
| 198 | clamp.config.action.test.override=false
|
| 199 | # if action.insert.test.event is true, then insert event even if the action is set to test
|
| 200 | clamp.config.action.insert.test.event=false
|
| 201 | clamp.config.clds.service.cache.invalidate.after.seconds=120
|
| 202 |
|
| 203 | #DCAE Inventory Url Properties
|
Determe, Sebastien (sd378r) | 378d05b | 2018-03-23 14:46:56 +0100 | [diff] [blame] | 204 | clamp.config.dcae.inventory.url=http://localhost:${docker.http-cache.port.host}
|
Determe, Sebastien (sd378r) | 3271165 | 2018-05-08 16:30:12 +0200 | [diff] [blame] | 205 | clamp.config.dcae.intentory.retry.interval=10000
|
| 206 | clamp.config.dcae.intentory.retry.limit=3
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 207 |
|
| 208 | #DCAE Dispatcher Url Properties
|
Determe, Sebastien (sd378r) | 378d05b | 2018-03-23 14:46:56 +0100 | [diff] [blame] | 209 | clamp.config.dcae.dispatcher.url=http://localhost:${docker.http-cache.port.host}
|
Determe, Sebastien (sd378r) | 3271165 | 2018-05-08 16:30:12 +0200 | [diff] [blame] | 210 | clamp.config.dcae.dispatcher.retry.interval=10000
|
| 211 | clamp.config.dcae.dispatcher.retry.limit=10
|
Determe, Sebastien (sd378r) | 35c6bda | 2018-03-05 16:03:25 +0100 | [diff] [blame] | 212 | clamp.config.dcae.header.requestId = X-ECOMP-RequestID
|
| 213 |
|
| 214 | #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
|
| 215 | clamp.config.security.permission.type.cl=permission-type-cl
|
| 216 | clamp.config.security.permission.type.cl.manage=permission-type-cl-manage
|
| 217 | clamp.config.security.permission.type.cl.event=permission-type-cl-event
|
| 218 | clamp.config.security.permission.type.filter.vf=permission-type-filter-vf
|
| 219 | clamp.config.security.permission.type.template=permission-type-template
|
| 220 | #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
|
| 221 | clamp.config.security.permission.instance=dev |