xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [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 | # =================================================================== |
| 21 | # |
| 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 |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 54 | server.port=8080 |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 55 | |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 56 | server.servlet.context-path=/ |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 57 | #Modified engine-rest applicationpath |
| 58 | spring.profiles.active=clamp-default,clamp-default-user,clamp-sdc-controller |
sebdet | c2bcf2a | 2019-02-22 08:16:26 +0100 | [diff] [blame^] | 59 | spring.http.converters.preferred-json-mapper=gson |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 60 | |
| 61 | #The max number of active threads in this pool |
| 62 | server.tomcat.max-threads=200 |
| 63 | #The minimum number of threads always kept alive |
| 64 | server.tomcat.min-Spare-Threads=25 |
| 65 | #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads |
| 66 | server.tomcat.max-idle-time=60000 |
| 67 | |
| 68 | #Servlet context parameters |
| 69 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value. |
| 70 | |
| 71 | camel.springboot.consumer-template-cache-size=1000 |
| 72 | camel.springboot.producer-template-cache-size=1000 |
Determe, Sebastien (sd378r) | f744247 | 2018-08-03 15:52:19 +0200 | [diff] [blame] | 73 | camel.springboot.jmx-enabled=true |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 74 | camel.defaultthreadpool.poolsize=10 |
| 75 | camel.defaultthreadpool.maxpoolsize=20 |
| 76 | camel.defaultthreadpool.maxqueuesize=1000 |
| 77 | camel.defaultthreadpool.keepaliveTime=60 |
| 78 | camel.defaultthreadpool.rejectpolicy=CallerRuns |
| 79 | #camel.springboot.xmlRoutes = false |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 80 | camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml |
| 81 | camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 82 | #camel.springboot.typeConversion = false |
| 83 | |
| 84 | #clds datasource connection details |
| 85 | spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver |
sebdet | 3294644 | 2019-01-14 14:16:51 +0100 | [diff] [blame] | 86 | spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3 |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 87 | spring.datasource.cldsdb.username=clds |
| 88 | spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067 |
| 89 | spring.datasource.cldsdb.validationQuery=SELECT 1 |
| 90 | spring.datasource.cldsdb.validationQueryTimeout=20000 |
| 91 | spring.datasource.cldsdb.validationInterval=30000 |
| 92 | spring.datasource.cldsdb.testWhileIdle = true |
| 93 | spring.datasource.cldsdb.minIdle = 0 |
| 94 | spring.datasource.cldsdb.initialSize=0 |
| 95 | # Automatically test whether a connection provided is good or not |
| 96 | spring.datasource.cldsdb.testOnBorrow=true |
| 97 | spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true |
sebdet | c2bcf2a | 2019-02-22 08:16:26 +0100 | [diff] [blame^] | 98 | # control the sql db initialization (from schema.sql and data.sql) |
| 99 | spring.datasource.initialize=false |
| 100 | |
| 101 | spring.jpa.properties.javax.persistence.schema-generation.database.action=none |
| 102 | s#pring.jpa.properties.javax.persistence.schema-generation.create-source=metadata |
| 103 | #spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create |
| 104 | #spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql |
| 105 | # disable Hibernate DDL generation because the schema will be generated from a sql script |
| 106 | spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect |
| 107 | spring.jpa.properties.hibernate.ddl-auto=validate |
| 108 | spring.jpa.properties.hibernate.hbm2ddl.delimiter=; |
| 109 | spring.jpa.properties.hibernate.format_sql=true |
| 110 | spring.jpa.properties.hibernate.use-new-id-generator-mappings=true |
| 111 | |
| 112 | # Whether to enable logging of SQL statements. |
| 113 | spring.jpa.show-sql=true |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 114 | |
| 115 | #Async Executor default Parameters |
| 116 | async.core.pool.size=10 |
| 117 | async.max.pool.size=20 |
| 118 | async.queue.capacity=500 |
| 119 | |
Determe, Sebastien (sd378r) | 499e4e8 | 2018-08-09 17:14:09 +0200 | [diff] [blame] | 120 | #For EELF logback file |
sebdet | 3294644 | 2019-01-14 14:16:51 +0100 | [diff] [blame] | 121 | #clamp.config.logback.path= |
sebdet | 86bf8ee | 2018-09-05 18:07:57 +0200 | [diff] [blame] | 122 | clamp.config.logback.filename=logback-default.xml |
Determe, Sebastien (sd378r) | 499e4e8 | 2018-08-09 17:14:09 +0200 | [diff] [blame] | 123 | #The log folder that will be used in logback.xml file |
sebdet | 8ad2921 | 2018-12-14 11:56:22 +0100 | [diff] [blame] | 124 | clamp.config.log.path=/var/log/onap/clamp |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 125 | clamp.config.files.systemProperties=classpath:/system.properties |
| 126 | clamp.config.files.cldsUsers=classpath:/clds/clds-users.json |
| 127 | clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json |
| 128 | clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json |
| 129 | |
| 130 | # Properties for Clamp |
| 131 | # DCAE request build properties |
| 132 | # |
| 133 | clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 134 | clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json |
| 135 | # |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 136 | # |
| 137 | # Configuration Settings for Policy Engine Components |
| 138 | clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123 |
| 139 | clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123 |
| 140 | clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123 |
| 141 | clamp.config.policy.notificationType=websocket |
| 142 | clamp.config.policy.notificationUebServers=localhost |
| 143 | clamp.config.policy.notificationTopic=PDPD-CONFIGURATION |
| 144 | clamp.config.policy.clientId=python |
| 145 | # base64 encoding |
| 146 | |
| 147 | clamp.config.policy.clientKey=dGVzdA== |
| 148 | #DEVL for development |
| 149 | #TEST for Test environments |
| 150 | #PROD for prod environments |
| 151 | clamp.config.policy.policyEnvironment=TEST |
| 152 | # General Policy request properties |
| 153 | # |
| 154 | clamp.config.policy.onap.name=DCAE |
| 155 | clamp.config.policy.pdp.group=default |
| 156 | clamp.config.policy.ms.type=MicroService |
| 157 | clamp.config.policy.ms.policyNamePrefix=Config_MS_ |
| 158 | clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_ |
| 159 | clamp.config.policy.base.policyNamePrefix=Config_ |
| 160 | clamp.config.policy.op.type=BRMS_Param |
| 161 | |
sebdet | 3294644 | 2019-01-14 14:16:51 +0100 | [diff] [blame] | 162 | clamp.config.import.tosca.model=true |
| 163 | clamp.config.tosca.policyTypes=tca |
| 164 | clamp.config.tosca.filePath=/tmp/tosca-models |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 165 | |
| 166 | # TCA MicroService Policy request build properties |
| 167 | # |
| 168 | clamp.config.tca.policyid.prefix=DCAE.Config_ |
| 169 | clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json |
| 170 | clamp.config.tca.template=classpath:/clds/templates/tca-template.json |
| 171 | clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json |
| 172 | |
| 173 | # |
| 174 | # |
| 175 | # Operational Policy request build properties |
| 176 | # |
sebdet | 3294644 | 2019-01-14 14:16:51 +0100 | [diff] [blame] | 177 | clamp.config.op.policyDescription=from CLAMP |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 178 | # default |
| 179 | clamp.config.op.templateName=ClosedLoopControlName |
| 180 | clamp.config.op.operationTopic=APPC-CL |
| 181 | clamp.config.op.notificationTopic=POLICY-CL-MGT |
| 182 | clamp.config.op.controller=amsterdam |
| 183 | clamp.config.op.policy.appc=APPC |
| 184 | # |
| 185 | # Sdc service properties |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 186 | clamp.config.sdc.csarFolder = /tmp/sdc-controllers |
| 187 | clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json |
| 188 | # |
| 189 | clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 190 | # |
| 191 | # 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 |
| 192 | clamp.config.action.test.override=false |
| 193 | # if action.insert.test.event is true, then insert event even if the action is set to test |
| 194 | clamp.config.action.insert.test.event=false |
| 195 | clamp.config.clds.service.cache.invalidate.after.seconds=120 |
| 196 | |
| 197 | #DCAE Inventory Url Properties |
| 198 | clamp.config.dcae.inventory.url=http://dcae.api.simpledemo.onap.org:8080 |
| 199 | clamp.config.dcae.intentory.retry.interval=10000 |
sebdet | 19ab233 | 2018-09-12 18:52:39 +0200 | [diff] [blame] | 200 | clamp.config.dcae.intentory.retry.limit=5 |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 201 | |
| 202 | #DCAE Dispatcher Url Properties |
| 203 | clamp.config.dcae.dispatcher.url=http://dcae.api.simpledemo.onap.org:8188 |
sebdet | 19ab233 | 2018-09-12 18:52:39 +0200 | [diff] [blame] | 204 | clamp.config.dcae.dispatcher.retry.interval=20000 |
| 205 | clamp.config.dcae.dispatcher.retry.limit=30 |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 206 | clamp.config.dcae.header.requestId = X-ECOMP-RequestID |
| 207 | |
| 208 | #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case ! |
| 209 | clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl |
| 210 | clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage |
| 211 | clamp.config.security.permission.type.cl.event=org.onap.clds.cl.event |
| 212 | clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf |
| 213 | clamp.config.security.permission.type.template=org.onap.clamp.clds.template |
sebdet | 86bf8ee | 2018-09-05 18:07:57 +0200 | [diff] [blame] | 214 | clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca |
xg353y | 7e836e1 | 2018-06-06 15:50:33 +0200 | [diff] [blame] | 215 | #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties |
| 216 | clamp.config.security.permission.instance=dev |
sebdet | 3294644 | 2019-01-14 14:16:51 +0100 | [diff] [blame] | 217 | clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal |