Merge "add issue"
[clamp.git] / src / main / resources / application.properties
1 ###
2 # ============LICENSE_START=======================================================
3 # ONAP CLAMP
4 # ================================================================================
5 # Copyright (C) 2017-2019 AT&T Intellectual Property. All rights
6 #                             reserved.
7 # ================================================================================
8 # Modifications copyright (c) 2019 Nokia
9 # ================================================================================\
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
26 info.build.artifact=@project.artifactId@
27 info.build.name=@project.name@
28 info.build.description=@project.description@
29 info.build.version=@project.version@
30
31 ### Set the port for HTTP or HTTPS protocol (Controlled by Spring framework, only one at a time).
32 ### (See below for the parameter 'server.http.port' if you want to have both enabled)
33 ### To have only HTTP, keep the lines server.ssl.* commented
34 ### To have only HTTPS enabled, uncomment the server.ssl.* lines and specify a right keystore location
35 ### server.port=8080
36 ### Settings for HTTPS (this automatically enables the HTTPS on the port 'server.port')
37 #server.ssl.key-store=file:/tmp/mykey.jks
38 #server.ssl.key-store-password=pass
39 #server.ssl.key-password=pass
40
41 ### In order to be user friendly when HTTPS is enabled,
42 ### you can add another HTTP port that will be automatically redirected to HTTPS
43 ### by enabling this parameter (server.http.port) and set it to another port (80 or 8080, 8090, etc ...)
44 #server.http-to-https-redirection.port=8090
45
46 ### HTTP Example:
47 ###--------------
48 ### server.port=8080
49
50 ### HTTPS Example:
51 ### --------------
52 ### server.port=8443
53 ### server.ssl.key-store=file:/tmp/mykey.jks
54 ### server.ssl.key-store-password=mypass
55 ### server.ssl.key-password=mypass
56
57 ### HTTP (Redirected to HTTPS) and HTTPS Example:
58 ### --------------------------------------------
59 server.port=8443
60 ## Config part for Server certificates
61 # Can be a classpath parameter instead of file:/
62 server.ssl.key-store=classpath:/clds/aaf/org.onap.clamp.p12
63 server.ssl.key-store-password=China in the Spring
64 server.ssl.key-password=China in the Spring
65 server.ssl.key-store-type=PKCS12
66 server.ssl.key-alias=clamp@clamp.onap.org
67
68 ## Config part for Client certificates
69 server.ssl.client-auth=want
70 server.ssl.trust-store=classpath:/clds/aaf/truststoreONAPall.jks
71 server.ssl.trust-store-password=changeit
72
73 #server.http-to-https-redirection.port=8080
74
75 server.servlet.context-path=/
76 #Modified engine-rest applicationpath
77 spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller-new
78 spring.http.converters.preferred-json-mapper=gson
79
80 #The max number of active threads in this pool
81 server.tomcat.max-threads=200
82 #The minimum number of threads always kept alive
83 server.tomcat.min-Spare-Threads=25
84 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
85 server.tomcat.max-idle-time=60000
86
87 #Servlet context parameters
88 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
89
90 camel.springboot.consumer-template-cache-size=1000
91 camel.springboot.producer-template-cache-size=1000
92 camel.springboot.jmx-enabled=true
93 camel.defaultthreadpool.poolsize=10
94 camel.defaultthreadpool.maxpoolsize=20
95 camel.defaultthreadpool.maxqueuesize=1000
96 camel.defaultthreadpool.keepaliveTime=60
97 camel.defaultthreadpool.rejectpolicy=CallerRuns
98 #camel.springboot.xmlRoutes = false
99 camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
100 camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
101 #camel.springboot.typeConversion = false
102
103 #clds datasource connection details
104 spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
105 spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
106 spring.datasource.cldsdb.username=clds
107 spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
108 spring.datasource.cldsdb.validationQuery=SELECT 1
109 spring.datasource.cldsdb.validationQueryTimeout=20000
110 spring.datasource.cldsdb.validationInterval=30000
111 spring.datasource.cldsdb.testWhileIdle = true
112 spring.datasource.cldsdb.minIdle = 0
113 spring.datasource.cldsdb.initialSize=0
114 # Automatically test whether a connection provided is good or not
115 spring.datasource.cldsdb.testOnBorrow=true
116 spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
117
118 spring.jpa.properties.javax.persistence.schema-generation.database.action=none
119 #spring.jpa.properties.javax.persistence.schema-generation.create-source=metadata
120 #spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
121 #spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql
122 # disable Hibernate DDL generation because the schema will be generated from a sql script
123 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
124 spring.jpa.properties.hibernate.ddl-auto=validate
125 spring.jpa.properties.hibernate.hbm2ddl.delimiter=;
126 spring.jpa.properties.hibernate.format_sql=true
127 spring.jpa.properties.hibernate.use-new-id-generator-mappings=true
128
129 # Whether to enable logging of SQL statements.
130 #spring.jpa.show-sql=true
131
132 #Async Executor default Parameters
133 async.core.pool.size=10
134 async.max.pool.size=20
135 async.queue.capacity=500
136
137 #For EELF logback file
138 #clamp.config.logback.path=
139 clamp.config.logback.filename=logback-default.xml
140 #The log folder that will be used in logback.xml file
141 clamp.config.log.path=/var/log/onap/clamp
142 clamp.config.files.systemProperties=classpath:/system.properties
143 clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
144 clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
145 clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
146
147 # Properties for Clamp
148 # DCAE request build properties
149 #
150 clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
151 clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
152 #
153 #
154 # Configuration Settings for Policy Engine Components
155 clamp.config.policy.api.url=http4://policy.api.simpledemo.onap.org:6969
156 clamp.config.policy.api.userName=healthcheck
157 clamp.config.policy.api.password=zb!XztG34
158 clamp.config.policy.pap.url=http4://policy.api.simpledemo.onap.org:6969
159 clamp.config.policy.pap.userName=healthcheck
160 clamp.config.policy.pap.password=zb!XztG34
161
162 clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
163 clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
164 clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123
165 clamp.config.policy.notificationType=websocket
166 clamp.config.policy.notificationUebServers=localhost
167 clamp.config.policy.notificationTopic=PDPD-CONFIGURATION
168 clamp.config.policy.clientId=python
169 # base64 encoding
170
171 clamp.config.policy.clientKey=dGVzdA==
172 #DEVL for development
173 #TEST for Test environments
174 #PROD for prod environments
175 clamp.config.policy.policyEnvironment=TEST
176 # General Policy request properties
177 #
178 clamp.config.policy.onap.name=DCAE
179 clamp.config.policy.pdp.group=default
180 clamp.config.policy.ms.type=MicroService
181 clamp.config.policy.ms.policyNamePrefix=Config_MS_
182 clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
183 clamp.config.policy.base.policyNamePrefix=Config_
184 clamp.config.policy.op.type=BRMS_Param
185
186 clamp.config.import.tosca.model=true
187 clamp.config.tosca.policyTypes=tca
188 clamp.config.tosca.filePath=/tmp/tosca-models
189
190 # TCA MicroService Policy request build properties
191 #
192 clamp.config.tca.policyid.prefix=DCAE.Config_
193 clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
194 clamp.config.tca.template=classpath:/clds/templates/tca-template.json
195 clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
196
197 #
198 #
199 # Operational Policy request build properties
200 #
201 clamp.config.op.policyDescription=from CLAMP
202 # default
203 clamp.config.op.templateName=ClosedLoopControlName
204 clamp.config.op.operationTopic=APPC-CL
205 clamp.config.op.notificationTopic=POLICY-CL-MGT
206 clamp.config.op.controller=amsterdam
207 clamp.config.op.policy.appc=APPC
208 #
209 # Sdc service properties
210 clamp.config.sdc.csarFolder = /tmp/sdc-controllers
211 clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
212 #
213 clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
214 #
215 # 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
216 clamp.config.action.test.override=false
217 # if action.insert.test.event is true, then insert event even if the action is set to test
218 clamp.config.action.insert.test.event=false
219 clamp.config.clds.service.cache.invalidate.after.seconds=120
220
221 #DCAE Inventory Url Properties
222 clamp.config.dcae.inventory.url=http4://dcae.api.simpledemo.onap.org:8080
223 clamp.config.dcae.intentory.retry.interval=10000
224 clamp.config.dcae.intentory.retry.limit=5
225
226 #DCAE Deployment Url Properties
227 clamp.config.dcae.deployment.url=http4://dcae.api.simpledemo.onap.org:8188
228 clamp.config.dcae.deployment.userName=test
229 clamp.config.dcae.deployment.password=test
230
231 #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
232 clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl
233 clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage
234 clamp.config.security.permission.type.cl.event=org.onap.clamp.clds.cl.event
235 clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf
236 clamp.config.security.permission.type.template=org.onap.clamp.clds.template
237 clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca
238 #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
239 clamp.config.security.permission.instance=dev
240 clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal
241
242 #AAF related parameters
243 clamp.config.cadi.keyFile=classpath:/clds/aaf/org.onap.clamp.keyfile
244 clamp.config.cadi.cadiLoglevel=DEBUG
245 clamp.config.cadi.cadiLatitude=10
246 clamp.config.cadi.cadiLongitude=10
247 clamp.config.cadi.aafLocateUrl=https://10.0.0.106:31111
248 clamp.config.cadi.cadiKeystorePassword=enc:V_kq_EwDNb4itWp_lYfDGXIWJzemHGkhkZOxAQI9IHs
249 clamp.config.cadi.cadiTruststorePassword=enc:Mj0YQqNCUKbKq2lPp1kTFQWeqLxaBXKNwd5F1yB1ukf
250 #clamp.config.cadi.oauthTokenUrl=https://AAF_LOCATE_URL/AAF_NS.token:2.0/token
251 #clamp.config.cadi.oauthIntrospectUrll=https://AAF_LOCATE_URL/AAF_NS.introspect:2.0/introspect
252 clamp.config.cadi.aafEnv=DEV
253 clamp.config.cadi.aafUrl=https://AAF_LOCATE_URL/onap.org.osaaf.aaf.service:2.1
254 clamp.config.cadi.cadiX509Issuers=CN=intermediateCA_9, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US