xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 1 | ### |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # ONAP CLAMP |
| 4 | # ================================================================================ |
ChrisC | 76c74f5 | 2019-03-26 14:28:39 +0100 | [diff] [blame] | 5 | # Copyright (C) 2017-2019 AT&T Intellectual Property. All rights |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 6 | # reserved. |
| 7 | # ================================================================================ |
Krysiak Adam | 09db238 | 2019-04-23 16:29:22 +0200 | [diff] [blame] | 8 | # Modifications copyright (c) 2019 Nokia |
| 9 | # ================================================================================\ |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 10 | # 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 | |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 26 | ### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time). |
| 27 | ### (See below for the parameter 'server.http.port' if you want to have both enabled) |
| 28 | ### To have only HTTP, keep the lines server.ssl.* commented |
| 29 | ### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location |
| 30 | ### server.port=8080 |
| 31 | ### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port') |
| 32 | #server.ssl.key-store=file:/tmp/mykey.jks |
| 33 | #server.ssl.key-store-password=pass |
| 34 | #server.ssl.key-password=pass |
| 35 | |
| 36 | ### In order to be user friendly when HTTPS is enabled, |
| 37 | ### you can add another HTTP port that will be automatically redirected to HTTPS |
| 38 | ### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...) |
| 39 | #server.http-to-https-redirection.port=8090 |
| 40 | |
| 41 | ### HTTP Example: |
| 42 | ###-------------- |
| 43 | ### server.port=8080 |
| 44 | |
| 45 | ### HTTPS Example: |
| 46 | ### -------------- |
| 47 | ### server.port=8443 |
| 48 | ### server.ssl.key-store=file:/tmp/mykey.jks |
| 49 | ### server.ssl.key-store-password=mypass |
| 50 | ### server.ssl.key-password=mypass |
| 51 | |
| 52 | ### HTTP (Redirected to HTTPS) and HTTPS Example: |
| 53 | ### -------------------------------------------- |
| 54 | server.port=8443 |
Determe, Sebastien (sd378r) | e1c2aab | 2018-08-17 17:41:15 +0200 | [diff] [blame] | 55 | ## Config part for Server certificates |
| 56 | # Can be a classpath parameter instead of file:/ |
| 57 | server.ssl.key-store=classpath:/clds/aaf/org.onap.clamp.p12 |
xuegao | 1ebfe6b | 2019-11-28 15:13:18 +0100 | [diff] [blame] | 58 | server.ssl.key-store-password=enc:WWCxchk4WGBNSvuzLq3MLjMs5ObRybJtts5AI0XD1Vc |
| 59 | server.ssl.key-password=enc:WWCxchk4WGBNSvuzLq3MLjMs5ObRybJtts5AI0XD1Vc |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 60 | server.ssl.key-store-type=PKCS12 |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 61 | server.ssl.key-alias=clamp@clamp.onap.org |
Determe, Sebastien (sd378r) | e1c2aab | 2018-08-17 17:41:15 +0200 | [diff] [blame] | 62 | |
xuegao | 1ebfe6b | 2019-11-28 15:13:18 +0100 | [diff] [blame] | 63 | # The key file used to decode the key store and trust store password |
| 64 | # If not defined, the key store and trust store password will not be decrypted |
| 65 | clamp.config.keyFile=classpath:/clds/aaf/org.onap.clamp.keyfile |
| 66 | |
Determe, Sebastien (sd378r) | e1c2aab | 2018-08-17 17:41:15 +0200 | [diff] [blame] | 67 | ## Config part for Client certificates |
sebdet | f117756 | 2018-09-03 11:23:13 +0200 | [diff] [blame] | 68 | server.ssl.client-auth=want |
Determe, Sebastien (sd378r) | e1c2aab | 2018-08-17 17:41:15 +0200 | [diff] [blame] | 69 | server.ssl.trust-store=classpath:/clds/aaf/truststoreONAPall.jks |
xuegao | 1ebfe6b | 2019-11-28 15:13:18 +0100 | [diff] [blame] | 70 | server.ssl.trust-store-password=enc:iDnPBBLq_EMidXlMa1FEuBR8TZzYxrCg66vq_XfLHdJ |
Determe, Sebastien (sd378r) | e1c2aab | 2018-08-17 17:41:15 +0200 | [diff] [blame] | 71 | |
sebdet | 2d526d7 | 2019-04-29 14:45:24 +0200 | [diff] [blame] | 72 | #server.http-to-https-redirection.port=8080 |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 73 | |
| 74 | server.servlet.context-path=/ |
| 75 | #Modified engine-rest applicationpath |
sebdet | e65d457 | 2020-03-24 08:51:20 -0700 | [diff] [blame] | 76 | spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller,clamp-ssl-config,clamp-policy-controller,legacy-operational-policy,default-dictionary-elements |
Krysiak Adam | cdfe48c | 2019-01-29 15:59:00 +0100 | [diff] [blame] | 77 | spring.http.converters.preferred-json-mapper=gson |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 78 | |
| 79 | #The max number of active threads in this pool |
| 80 | server.tomcat.max-threads=200 |
| 81 | #The minimum number of threads always kept alive |
| 82 | server.tomcat.min-Spare-Threads=25 |
| 83 | #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads |
| 84 | server.tomcat.max-idle-time=60000 |
| 85 | |
| 86 | #Servlet context parameters |
| 87 | server.context_parameters.p-name=value #context parameter with p-name as key and value as value. |
sebdet | 580141f | 2020-04-01 00:00:37 +0200 | [diff] [blame] | 88 | camel.springboot.tracing=true |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 89 | camel.springboot.consumer-template-cache-size=1000 |
| 90 | camel.springboot.producer-template-cache-size=1000 |
sebdet | 86bf8ee | 2018-09-05 18:07:57 +0200 | [diff] [blame] | 91 | camel.springboot.jmx-enabled=true |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 92 | camel.defaultthreadpool.poolsize=10 |
| 93 | camel.defaultthreadpool.maxpoolsize=20 |
| 94 | camel.defaultthreadpool.maxqueuesize=1000 |
| 95 | camel.defaultthreadpool.keepaliveTime=60 |
| 96 | camel.defaultthreadpool.rejectpolicy=CallerRuns |
| 97 | #camel.springboot.xmlRoutes = false |
| 98 | camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml |
| 99 | camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml |
| 100 | #camel.springboot.typeConversion = false |
| 101 | |
| 102 | #clds datasource connection details |
| 103 | spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver |
sebdet | a664994 | 2018-12-11 12:39:11 +0100 | [diff] [blame] | 104 | spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3 |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 105 | spring.datasource.cldsdb.username=clds |
| 106 | spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067 |
| 107 | spring.datasource.cldsdb.validationQuery=SELECT 1 |
| 108 | spring.datasource.cldsdb.validationQueryTimeout=20000 |
| 109 | spring.datasource.cldsdb.validationInterval=30000 |
| 110 | spring.datasource.cldsdb.testWhileIdle = true |
| 111 | spring.datasource.cldsdb.minIdle = 0 |
| 112 | spring.datasource.cldsdb.initialSize=0 |
| 113 | # Automatically test whether a connection provided is good or not |
| 114 | spring.datasource.cldsdb.testOnBorrow=true |
| 115 | spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true |
| 116 | |
sebdet | c2bcf2a | 2019-02-22 08:16:26 +0100 | [diff] [blame] | 117 | spring.jpa.properties.javax.persistence.schema-generation.database.action=none |
| 118 | #spring.jpa.properties.javax.persistence.schema-generation.create-source=metadata |
| 119 | #spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create |
| 120 | #spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql |
| 121 | # disable Hibernate DDL generation because the schema will be generated from a sql script |
| 122 | spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect |
| 123 | spring.jpa.properties.hibernate.ddl-auto=validate |
| 124 | spring.jpa.properties.hibernate.hbm2ddl.delimiter=; |
| 125 | spring.jpa.properties.hibernate.format_sql=true |
| 126 | spring.jpa.properties.hibernate.use-new-id-generator-mappings=true |
| 127 | |
| 128 | # Whether to enable logging of SQL statements. |
sebdet | 7fc0739 | 2019-04-10 15:27:46 +0200 | [diff] [blame] | 129 | #spring.jpa.show-sql=true |
sebdet | c2bcf2a | 2019-02-22 08:16:26 +0100 | [diff] [blame] | 130 | |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 131 | #Async Executor default Parameters |
| 132 | async.core.pool.size=10 |
| 133 | async.max.pool.size=20 |
| 134 | async.queue.capacity=500 |
| 135 | |
Determe, Sebastien (sd378r) | 499e4e8 | 2018-08-09 17:14:09 +0200 | [diff] [blame] | 136 | #For EELF logback file |
sebdet | f117756 | 2018-09-03 11:23:13 +0200 | [diff] [blame] | 137 | #clamp.config.logback.path= |
| 138 | clamp.config.logback.filename=logback-default.xml |
Determe, Sebastien (sd378r) | 499e4e8 | 2018-08-09 17:14:09 +0200 | [diff] [blame] | 139 | #The log folder that will be used in logback.xml file |
sebdet | 8ad2921 | 2018-12-14 11:56:22 +0100 | [diff] [blame] | 140 | clamp.config.log.path=/var/log/onap/clamp |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 141 | clamp.config.files.systemProperties=classpath:/system.properties |
| 142 | clamp.config.files.cldsUsers=classpath:/clds/clds-users.json |
| 143 | clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json |
| 144 | clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json |
| 145 | |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 146 | # |
| 147 | # Configuration Settings for Policy Engine Components |
sebdet | af8b7d7 | 2019-04-26 16:34:14 +0200 | [diff] [blame] | 148 | clamp.config.policy.api.url=http4://policy.api.simpledemo.onap.org:6969 |
| 149 | clamp.config.policy.api.userName=healthcheck |
| 150 | clamp.config.policy.api.password=zb!XztG34 |
| 151 | clamp.config.policy.pap.url=http4://policy.api.simpledemo.onap.org:6969 |
| 152 | clamp.config.policy.pap.userName=healthcheck |
| 153 | clamp.config.policy.pap.password=zb!XztG34 |
| 154 | |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 155 | # |
| 156 | # Sdc service properties |
sebdet | e65d457 | 2020-03-24 08:51:20 -0700 | [diff] [blame] | 157 | clamp.config.sdc.csarFolder=/tmp/sdc-controllers |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 158 | |
| 159 | #DCAE Inventory Url Properties |
sebdet | 74303b7 | 2019-10-08 17:53:08 +0200 | [diff] [blame] | 160 | clamp.config.dcae.inventory.url=http4://dcae.api.simpledemo.onap.org:8080 |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 161 | clamp.config.dcae.intentory.retry.interval=10000 |
sebdet | 19ab233 | 2018-09-12 18:52:39 +0200 | [diff] [blame] | 162 | clamp.config.dcae.intentory.retry.limit=5 |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 163 | |
xg353y | 39d82de | 2019-04-26 13:26:25 +0200 | [diff] [blame] | 164 | #DCAE Deployment Url Properties |
| 165 | clamp.config.dcae.deployment.url=http4://dcae.api.simpledemo.onap.org:8188 |
| 166 | clamp.config.dcae.deployment.userName=test |
| 167 | clamp.config.dcae.deployment.password=test |
| 168 | |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 169 | #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case ! |
| 170 | clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl |
| 171 | clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage |
xg353y | a9be95f | 2019-03-11 13:47:22 +0100 | [diff] [blame] | 172 | clamp.config.security.permission.type.cl.event=org.onap.clamp.clds.cl.event |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 173 | clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf |
| 174 | clamp.config.security.permission.type.template=org.onap.clamp.clds.template |
sebdet | 86bf8ee | 2018-09-05 18:07:57 +0200 | [diff] [blame] | 175 | clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 176 | #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties |
| 177 | clamp.config.security.permission.instance=dev |
sebdet | 279a9e7 | 2018-12-19 17:33:37 +0100 | [diff] [blame] | 178 | clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 179 | |
| 180 | #AAF related parameters |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 181 | clamp.config.cadi.cadiLoglevel=DEBUG |
ChrisC | 989f406 | 2019-04-05 16:24:13 +0200 | [diff] [blame] | 182 | clamp.config.cadi.cadiLatitude=10 |
| 183 | clamp.config.cadi.cadiLongitude=10 |
sebdet | dcc4bdc | 2019-10-15 14:04:00 +0200 | [diff] [blame] | 184 | clamp.config.cadi.aafLocateUrl=https://aaf-locate:8095 |
sebdet | dcc4bdc | 2019-10-15 14:04:00 +0200 | [diff] [blame] | 185 | clamp.config.cadi.oauthTokenUrl= https://AAF_LOCATE_URL/locate/onap.org.osaaf.aaf.token:2.1/token |
| 186 | clamp.config.cadi.oauthIntrospectUrll=https://AAF_LOCATE_URL/locate/onap.org.osaaf.aaf.introspect:2.1/introspect |
xg353y | 054f1d1 | 2018-07-23 16:02:28 +0200 | [diff] [blame] | 187 | clamp.config.cadi.aafEnv=DEV |
sebdet | 56f5c14 | 2019-08-27 09:20:16 -0700 | [diff] [blame] | 188 | clamp.config.cadi.aafUrl=https://AAF_LOCATE_URL/onap.org.osaaf.aaf.service:2.1 |
sebdet | dcc4bdc | 2019-10-15 14:04:00 +0200 | [diff] [blame] | 189 | clamp.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 |
WeberLaurent | f0a648c | 2020-02-06 10:23:01 +0100 | [diff] [blame] | 190 | |
| 191 | ## Tosca converter |
sebdet | 723de7f | 2020-03-12 14:38:07 -0700 | [diff] [blame] | 192 | clamp.config.tosca.converter.json.schema.templates=classpath:/clds/tosca-converter/templates.json |
| 193 | clamp.config.tosca.converter.default.datatypes=classpath:/clds/tosca-converter/default-tosca-types.yaml |
| 194 | clamp.config.tosca.converter.dictionary.support.enabled=true |
Vidyashree-Huawei | 3121b5b | 2020-03-04 19:22:08 +0530 | [diff] [blame] | 195 | |
| 196 | # Configuration settings for CDS |
| 197 | clamp.config.cds.url=http4://blueprints-processor-http:8080 |
| 198 | clamp.config.cds.userName=ccsdkapps |
| 199 | clamp.config.cds.password=ccsdkapps |