Merge "Remove SDC query"
[clamp.git] / src / main / resources / application.properties
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
54
55 ### HTTP (Redirected to HTTPS) and HTTPS Example:
56 ### --------------------------------------------
57 server.port=8443
58 ## Config part for Server certificates
59 # Can be a classpath parameter instead of file:/
60 server.ssl.key-store=classpath:/clds/aaf/org.onap.clamp.p12
61 server.ssl.key-store-password=China in the Spring
62 server.ssl.key-password=China in the Spring
63 server.ssl.key-store-type=PKCS12
64 server.ssl.key-alias=clamp@clamp.onap.org
65
66 ## Config part for Client certificates
67 server.ssl.client-auth=want
68 server.ssl.trust-store=classpath:/clds/aaf/truststoreONAPall.jks
69 server.ssl.trust-store-password=changeit
70
71 server.http-to-https-redirection.port=8080
72
73 server.servlet.context-path=/
74 #Modified engine-rest applicationpath
75 spring.profiles.active=clamp-default,clamp-aaf-authentication,clamp-sdc-controller
76 spring.http.converters.preferred-json-mapper=gson
77
78 #The max number of active threads in this pool
79 server.tomcat.max-threads=200
80 #The minimum number of threads always kept alive
81 server.tomcat.min-Spare-Threads=25
82 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
83 server.tomcat.max-idle-time=60000
84
85 #Servlet context parameters
86 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
87
88 camel.springboot.consumer-template-cache-size=1000
89 camel.springboot.producer-template-cache-size=1000
90 camel.springboot.jmx-enabled=true
91 camel.defaultthreadpool.poolsize=10
92 camel.defaultthreadpool.maxpoolsize=20
93 camel.defaultthreadpool.maxqueuesize=1000
94 camel.defaultthreadpool.keepaliveTime=60
95 camel.defaultthreadpool.rejectpolicy=CallerRuns
96 #camel.springboot.xmlRoutes = false
97 camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
98 camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
99 #camel.springboot.typeConversion = false
100
101 #clds datasource connection details
102 spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
103 spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
104 spring.datasource.cldsdb.username=clds
105 spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
106 spring.datasource.cldsdb.validationQuery=SELECT 1
107 spring.datasource.cldsdb.validationQueryTimeout=20000
108 spring.datasource.cldsdb.validationInterval=30000
109 spring.datasource.cldsdb.testWhileIdle = true
110 spring.datasource.cldsdb.minIdle = 0
111 spring.datasource.cldsdb.initialSize=0
112 # Automatically test whether a connection provided is good or not
113 spring.datasource.cldsdb.testOnBorrow=true
114 spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
115
116 #Async Executor default Parameters
117 async.core.pool.size=10
118 async.max.pool.size=20
119 async.queue.capacity=500
120
121 #For EELF logback file
122 #clamp.config.logback.path=
123 clamp.config.logback.filename=logback-default.xml
124 #The log folder that will be used in logback.xml file
125 clamp.config.log.path=/var/log/onap/clamp
126 clamp.config.files.systemProperties=classpath:/system.properties
127 clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
128 clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
129 clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
130
131 # Properties for Clamp
132 # DCAE request build properties
133 #
134 clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
135 clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
136 #
137 #
138 # Configuration Settings for Policy Engine Components
139 clamp.config.policy.pdpUrl1=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
140 clamp.config.policy.pdpUrl2=http://policy.api.simpledemo.onap.org:8081/pdp/ , testpdp, alpha123
141 clamp.config.policy.papUrl=http://policy.api.simpledemo.onap.org:8081/pap/ , testpap, alpha123
142 clamp.config.policy.notificationType=websocket
143 clamp.config.policy.notificationUebServers=localhost
144 clamp.config.policy.notificationTopic=PDPD-CONFIGURATION
145 clamp.config.policy.clientId=python
146 # base64 encoding
147
148 clamp.config.policy.clientKey=dGVzdA==
149 #DEVL for development
150 #TEST for Test environments
151 #PROD for prod environments
152 clamp.config.policy.policyEnvironment=TEST
153 # General Policy request properties
154 #
155 clamp.config.policy.onap.name=DCAE
156 clamp.config.policy.pdp.group=default
157 clamp.config.policy.ms.type=MicroService
158 clamp.config.policy.ms.policyNamePrefix=Config_MS_
159 clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
160 clamp.config.policy.base.policyNamePrefix=Config_
161 clamp.config.policy.op.type=BRMS_Param
162
163 clamp.config.import.tosca.model=true
164 clamp.config.tosca.policyTypes=tca
165 clamp.config.tosca.filePath=/tmp/tosca-models
166
167 # TCA MicroService Policy request build properties
168 #
169 clamp.config.tca.policyid.prefix=DCAE.Config_
170 clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
171 clamp.config.tca.template=classpath:/clds/templates/tca-template.json
172 clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
173
174 #
175 #
176 # Operational Policy request build properties
177 #
178 clamp.config.op.policyDescription=from CLAMP
179 # default
180 clamp.config.op.templateName=ClosedLoopControlName
181 clamp.config.op.operationTopic=APPC-CL
182 clamp.config.op.notificationTopic=POLICY-CL-MGT
183 clamp.config.op.controller=amsterdam
184 clamp.config.op.policy.appc=APPC
185 #
186 # Sdc service properties
187 clamp.config.sdc.csarFolder = /tmp/sdc-controllers
188 clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
189 #
190 clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
191 #
192 # 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
193 clamp.config.action.test.override=false
194 # if action.insert.test.event is true, then insert event even if the action is set to test
195 clamp.config.action.insert.test.event=false
196 clamp.config.clds.service.cache.invalidate.after.seconds=120
197
198 #DCAE Inventory Url Properties
199 clamp.config.dcae.inventory.url=http://dcae.api.simpledemo.onap.org:8080
200 clamp.config.dcae.intentory.retry.interval=10000
201 clamp.config.dcae.intentory.retry.limit=5
202
203 #DCAE Dispatcher Url Properties
204 clamp.config.dcae.dispatcher.url=http://dcae.api.simpledemo.onap.org:8188
205 clamp.config.dcae.dispatcher.retry.interval=20000
206 clamp.config.dcae.dispatcher.retry.limit=30
207 clamp.config.dcae.header.requestId = X-ECOMP-RequestID
208
209 #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
210 clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl
211 clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage
212 clamp.config.security.permission.type.cl.event=org.onap.clds.cl.event
213 clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf
214 clamp.config.security.permission.type.template=org.onap.clamp.clds.template
215 clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca
216 #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
217 clamp.config.security.permission.instance=dev
218 clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal
219
220 #AAF related parameters
221 clamp.config.cadi.keyFile=classpath:/clds/aaf/org.onap.clamp.keyfile
222 clamp.config.cadi.cadiLoglevel=DEBUG
223 clamp.config.cadi.cadiLatitude=37.78187
224 clamp.config.cadi.cadiLongitude=-122.26147
225 clamp.config.cadi.aafLocateUrl=https://aaf.api.simpledemo.onap.org:8095
226 clamp.config.cadi.cadiKeystorePassword=enc:V_kq_EwDNb4itWp_lYfDGXIWJzemHGkhkZOxAQI9IHs
227 clamp.config.cadi.cadiTruststorePassword=enc:Mj0YQqNCUKbKq2lPp1kTFQWeqLxaBXKNwd5F1yB1ukf
228 #clamp.config.cadi.oauthTokenUrl=https://AAF_LOCATE_URL/AAF_NS.token:2.0/token
229 #clamp.config.cadi.oauthIntrospectUrll=https://AAF_LOCATE_URL/AAF_NS.introspect:2.0/introspect
230 clamp.config.cadi.aafEnv=DEV
231 clamp.config.cadi.aafUrl=https://AAF_LOCATE_URL/AAF_NS.service:2.0
232 clamp.config.cadi.cadiX509Issuers=CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US