Merge changes from topic 'feature/new-csar-installer'
[clamp.git] / src / test / resources / application.properties
1 ###\r
2 # ============LICENSE_START=======================================================\r
3 # ONAP CLAMP\r
4 # ================================================================================\r
5 # Copyright (C) 2017-2018 AT&T Intellectual Property. All rights\r
6 #                             reserved.\r
7 # ================================================================================\r
8 # Licensed under the Apache License, Version 2.0 (the "License");\r
9 # you may not use this file except in compliance with the License.\r
10 # You may obtain a copy of the License at\r
11 #\r
12 # http://www.apache.org/licenses/LICENSE-2.0\r
13 #\r
14 # Unless required by applicable law or agreed to in writing, software\r
15 # distributed under the License is distributed on an "AS IS" BASIS,\r
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17 # See the License for the specific language governing permissions and\r
18 # limitations under the License.\r
19 # ============LICENSE_END============================================\r
20 # ===================================================================\r
21 #\r
22 ###\r
23 \r
24 info.build.artifact=@project.artifactId@\r
25 info.build.name=@project.name@\r
26 info.build.description=@project.description@\r
27 info.build.version=@project.version@\r
28 \r
29 ### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).\r
30 ### (See below for the parameter 'server.http.port' if you want to have both enabled)\r
31 ### To have only HTTP, keep the lines server.ssl.* commented\r
32 ### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location\r
33 server.port=${clamp.it.tests.http}\r
34 ### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')\r
35 #server.ssl.key-store=file:/tmp/mykey.jks\r
36 #server.ssl.key-store-password=pass\r
37 #server.ssl.key-password=pass\r
38 \r
39 ### In order to be user friendly when HTTPS is enabled,\r
40 ### you can add another HTTP port that will be automatically redirected to HTTPS\r
41 ### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)\r
42 #server.http-to-https-redirection.port=8090\r
43 \r
44 ### HTTP Example:\r
45 ###--------------\r
46 ### server.port=8080\r
47 \r
48 ### HTTPS Example:\r
49 ### --------------\r
50 ### server.port=8443\r
51 ### server.ssl.key-store=file:/tmp/mykey.jks\r
52 ### server.ssl.key-store-password=mypass\r
53 ### server.ssl.key-password=mypass\r
54 \r
55 ### HTTP (Redirected to HTTPS) and HTTPS Example:\r
56 ### --------------------------------------------\r
57 ### server.port=8443           <-- The HTTPS port\r
58 ### server.ssl.key-store=file:/tmp/mykey.jks\r
59 ### server.ssl.key-store-password=mypass\r
60 ### server.ssl.key-password=mypass\r
61 ### server.http-to-https-redirection.port=8090  <-- The HTTP port\r
62 \r
63 server.servlet.context-path=/\r
64 #Modified engine-rest applicationpath\r
65 spring.profiles.active=clamp-default,clamp-default-user\r
66 spring.http.converters.preferred-json-mapper=gson\r
67 \r
68 #The max number of active threads in this pool\r
69 server.tomcat.max-threads=200\r
70 #The minimum number of threads always kept alive\r
71 server.tomcat.min-Spare-Threads=25\r
72 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads\r
73 server.tomcat.max-idle-time=60000\r
74 \r
75 #Servlet context parameters\r
76 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.\r
77 \r
78 camel.springboot.consumer-template-cache-size=1000\r
79 camel.springboot.producer-template-cache-size=1000\r
80 # JMX enabled to have Camel Swagger runtime working\r
81 camel.springboot.jmx-enabled=true\r
82 camel.defaultthreadpool.poolsize=10\r
83 camel.defaultthreadpool.maxpoolsize=20\r
84 camel.defaultthreadpool.maxqueuesize=1000\r
85 camel.defaultthreadpool.keepaliveTime=60\r
86 camel.defaultthreadpool.rejectpolicy=CallerRuns\r
87 #camel.springboot.xmlRoutes = false\r
88 camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml\r
89 camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml\r
90 #camel.springboot.typeConversion = false\r
91 \r
92 #clds datasource connection details\r
93 spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver\r
94 spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306,localhost:${docker.mariadb.port.host}/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3\r
95 spring.datasource.cldsdb.username=clds\r
96 spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067\r
97 spring.datasource.cldsdb.validationQuery=SELECT 1\r
98 spring.datasource.cldsdb.validationQueryTimeout=20000\r
99 spring.datasource.cldsdb.validationInterval=30000\r
100 spring.datasource.cldsdb.testWhileIdle = true\r
101 spring.datasource.cldsdb.minIdle = 0\r
102 spring.datasource.cldsdb.initialSize=0\r
103 # Automatically test whether a connection provided is good or not\r
104 spring.datasource.cldsdb.testOnBorrow=true\r
105 spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true\r
106 \r
107 spring.jpa.properties.javax.persistence.schema-generation.database.action=drop-and-create
108 #spring.jpa.properties.javax.persistence.schema-generation.create-source=metadata
109 #spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
110 #spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql
111 # disable Hibernate DDL generation because the schema will be generated from a sql script
112 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
113 spring.jpa.properties.hibernate.ddl-auto=validate
114 spring.jpa.properties.hibernate.hbm2ddl.delimiter=;
115 spring.jpa.properties.hibernate.format_sql=true
116 spring.jpa.properties.hibernate.use-new-id-generator-mappings=true
117
118 # Whether to enable logging of SQL statements.
119 spring.jpa.show-sql=true
120
121 #Async Executor default Parameters\r
122 async.core.pool.size=10\r
123 async.max.pool.size=20\r
124 async.queue.capacity=500\r
125 \r
126 #For EELF logback file\r
127 #com.att.eelf.logging.path=\r
128 clamp.config.logback.filename=logback-default.xml\r
129 #The log folder that will be used in logback.xml file\r
130 clamp.config.log.path=log\r
131 clamp.config.files.systemProperties=classpath:/system.properties\r
132 clamp.config.files.cldsUsers=classpath:/clds/clds-users.json\r
133 clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json\r
134 clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json\r
135 \r
136 # Properties for Clamp\r
137 # DCAE request build properties\r
138 #\r
139 clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json\r
140 clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json\r
141 #\r
142 #\r
143 # Configuration Settings for Policy Engine Components\r
144 clamp.config.policy.pdpUrl1=http://localhost:${docker.http-cache.port.host}/pdp/ , testpdp, alpha123\r
145 clamp.config.policy.pdpUrl2=http://localhost:${docker.http-cache.port.host}/pdp/ , testpdp, alpha123\r
146 clamp.config.policy.papUrl=http://localhost:${docker.http-cache.port.host}/pap/ , testpap, alpha123\r
147 clamp.config.policy.notificationType=websocket\r
148 clamp.config.policy.notificationUebServers=localhost\r
149 clamp.config.policy.notificationTopic=\r
150 clamp.config.policy.clientId=python\r
151 # base64 encoding\r
152 clamp.config.policy.clientKey=dGVzdA==\r
153 #DEVL for development\r
154 #TEST for Test environments\r
155 #PROD for prod environments\r
156 clamp.config.policy.policyEnvironment=DEVL\r
157 # General Policy request properties\r
158 #\r
159 clamp.config.policy.onap.name=DCAE\r
160 clamp.config.policy.pdp.group=default\r
161 clamp.config.policy.ms.type=MicroService\r
162 clamp.config.policy.ms.policyNamePrefix=Config_MS_\r
163 clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_\r
164 clamp.config.policy.base.policyNamePrefix=Config_\r
165 clamp.config.policy.op.type=BRMS_Param\r
166 \r
167 clamp.config.import.tosca.model=false\r
168 clamp.config.tosca.policyTypes=tca\r
169 clamp.config.tosca.filePath=/tmp/tosca-models\r
170 \r
171 # TCA MicroService Policy request build properties\r
172 #\r
173 clamp.config.tca.policyid.prefix=DCAE.Config_\r
174 clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json\r
175 clamp.config.tca.template=classpath:/clds/templates/tca-template.json\r
176 clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json\r
177 \r
178 #\r
179 #\r
180 # Operational Policy request build properties\r
181 #\r
182 clamp.config.op.policyDescription=from clds\r
183 # default\r
184 clamp.config.op.templateName=ClosedLoopControlName\r
185 clamp.config.op.operationTopic=APPC-CL\r
186 clamp.config.op.notificationTopic=POLICY-CL-MGT\r
187 clamp.config.op.controller=amsterdam\r
188 clamp.config.op.policy.appc=APPC\r
189 #\r
190 # Sdc service properties\r
191 #\r
192 clamp.config.sdc.csarFolder = ${project.build.directory}/sdc-tests\r
193 clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json\r
194 #\r
195 clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json\r
196 #\r
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\r
198 clamp.config.action.test.override=false\r
199 # if action.insert.test.event is true, then insert event even if the action is set to test\r
200 clamp.config.action.insert.test.event=false\r
201 clamp.config.clds.service.cache.invalidate.after.seconds=120\r
202 \r
203 #DCAE Inventory Url Properties\r
204 clamp.config.dcae.inventory.url=http://localhost:${docker.http-cache.port.host}\r
205 clamp.config.dcae.intentory.retry.interval=100\r
206 clamp.config.dcae.intentory.retry.limit=1\r
207 \r
208 #DCAE Dispatcher Url Properties\r
209 clamp.config.dcae.dispatcher.url=http://localhost:${docker.http-cache.port.host}\r
210 clamp.config.dcae.dispatcher.retry.interval=100\r
211 clamp.config.dcae.dispatcher.retry.limit=1\r
212 clamp.config.dcae.header.requestId = X-ECOMP-RequestID\r
213 \r
214 #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !\r
215 clamp.config.security.permission.type.cl=permission-type-cl\r
216 clamp.config.security.permission.type.cl.manage=permission-type-cl-manage\r
217 clamp.config.security.permission.type.cl.event=permission-type-cl-event\r
218 clamp.config.security.permission.type.filter.vf=permission-type-filter-vf\r
219 clamp.config.security.permission.type.template=permission-type-template\r
220 clamp.config.security.permission.type.tosca=permission-type-tosca\r
221 #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties\r
222 clamp.config.security.permission.instance=dev\r
223 clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal