Remove Policy dependencies
[clamp.git] / src / main / resources / application-noaaf.properties
1 ###
2 # ============LICENSE_START=======================================================
3 # ONAP CLAMP
4 # ================================================================================
5 # Copyright (C) 2017-2019 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 server.port=8443
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
58 server.ssl.key-store-password=China in the Spring
59 server.ssl.key-password=China in the Spring
60 server.ssl.key-store-type=PKCS12
61 server.ssl.key-alias=clamp@clamp.onap.org
62
63 ## Config part for Client certificates
64 server.ssl.client-auth=want
65 server.ssl.trust-store=classpath:/clds/aaf/truststoreONAPall.jks
66 server.ssl.trust-store-password=changeit
67
68 #server.http-to-https-redirection.port=8080
69
70 server.servlet.context-path=/
71 #Modified engine-rest applicationpath
72 spring.profiles.active=clamp-default,clamp-default-user,clamp-sdc-controller-new
73 spring.http.converters.preferred-json-mapper=gson
74
75 #The max number of active threads in this pool
76 server.tomcat.max-threads=200
77 #The minimum number of threads always kept alive
78 server.tomcat.min-Spare-Threads=25
79 #The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads
80 server.tomcat.max-idle-time=60000
81
82 #Servlet context parameters
83 server.context_parameters.p-name=value #context parameter with p-name as key and value as value.
84
85 camel.springboot.consumer-template-cache-size=1000
86 camel.springboot.producer-template-cache-size=1000
87 camel.springboot.jmx-enabled=true
88 camel.defaultthreadpool.poolsize=10
89 camel.defaultthreadpool.maxpoolsize=20
90 camel.defaultthreadpool.maxqueuesize=1000
91 camel.defaultthreadpool.keepaliveTime=60
92 camel.defaultthreadpool.rejectpolicy=CallerRuns
93 #camel.springboot.xmlRoutes = false
94 camel.springboot.xmlRoutes=classpath:/clds/camel/routes/*.xml
95 camel.springboot.xmlRests=classpath:/clds/camel/rest/*.xml
96 #camel.springboot.typeConversion = false
97
98 #clds datasource connection details
99 spring.datasource.cldsdb.driverClassName=org.mariadb.jdbc.Driver
100 spring.datasource.cldsdb.url=jdbc:mariadb:sequential://localhost:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3
101 spring.datasource.cldsdb.username=clds
102 spring.datasource.cldsdb.password=4c90a0b48204383f4283448d23e0b885a47237b2a23588e7c4651604f51c1067
103 spring.datasource.cldsdb.validationQuery=SELECT 1
104 spring.datasource.cldsdb.validationQueryTimeout=20000
105 spring.datasource.cldsdb.validationInterval=30000
106 spring.datasource.cldsdb.testWhileIdle = true
107 spring.datasource.cldsdb.minIdle = 0
108 spring.datasource.cldsdb.initialSize=0
109 # Automatically test whether a connection provided is good or not
110 spring.datasource.cldsdb.testOnBorrow=true
111 spring.datasource.cldsdb.ignoreExceptionOnPreLoad=true
112 # control the sql db initialization (from schema.sql and data.sql)
113 spring.datasource.initialize=false
114
115 spring.jpa.properties.javax.persistence.schema-generation.database.action=none
116 s#pring.jpa.properties.javax.persistence.schema-generation.create-source=metadata
117 #spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
118 #spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=create.sql
119 # disable Hibernate DDL generation because the schema will be generated from a sql script
120 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
121 spring.jpa.properties.hibernate.ddl-auto=validate
122 spring.jpa.properties.hibernate.hbm2ddl.delimiter=;
123 spring.jpa.properties.hibernate.format_sql=true
124 spring.jpa.properties.hibernate.use-new-id-generator-mappings=true
125
126 # Whether to enable logging of SQL statements.
127 #spring.jpa.show-sql=true
128
129 #Async Executor default Parameters
130 async.core.pool.size=10
131 async.max.pool.size=20
132 async.queue.capacity=500
133
134 #For EELF logback file
135 #clamp.config.logback.path=
136 clamp.config.logback.filename=logback-default.xml
137 #The log folder that will be used in logback.xml file
138 clamp.config.log.path=/var/log/onap/clamp
139 clamp.config.files.systemProperties=classpath:/system.properties
140 clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
141 clamp.config.files.globalProperties=classpath:/clds/templates/globalProperties.json
142 clamp.config.files.sdcController=classpath:/clds/sdc-controllers-config.json
143
144 # Properties for Clamp
145 # DCAE request build properties
146 #
147 clamp.config.dcae.template=classpath:/clds/templates/dcae-template.json
148 clamp.config.dcae.deployment.template=classpath:/clds/templates/dcae-deployment-template.json
149 #
150 #
151 # Configuration Settings for Policy Engine Components
152 clamp.config.policy.api.url=http4://localhost:8085
153 clamp.config.policy.api.userName=healthcheck
154 clamp.config.policy.api.password=zb!XztG34
155 clamp.config.policy.pap.url=http4://localhost:8085
156 clamp.config.policy.pap.userName=healthcheck
157 clamp.config.policy.pap.password=zb!XztG34
158
159
160 clamp.config.policy.clientKey=dGVzdA==
161 #DEVL for development
162 #TEST for Test environments
163 #PROD for prod environments
164 clamp.config.policy.policyEnvironment=TEST
165 # General Policy request properties
166 #
167 clamp.config.policy.onap.name=DCAE
168 clamp.config.policy.pdp.group=default
169 clamp.config.policy.ms.type=MicroService
170 clamp.config.policy.ms.policyNamePrefix=Config_MS_
171 clamp.config.policy.op.policyNamePrefix=Config_BRMS_Param_
172 clamp.config.policy.base.policyNamePrefix=Config_
173 clamp.config.policy.op.type=BRMS_Param
174
175 clamp.config.import.tosca.model=true
176 clamp.config.tosca.policyTypes=tca
177 clamp.config.tosca.filePath=/tmp/tosca-models
178
179 # TCA MicroService Policy request build properties
180 #
181 clamp.config.tca.policyid.prefix=DCAE.Config_
182 clamp.config.tca.policy.template=classpath:/clds/templates/tca-policy-template.json
183 clamp.config.tca.template=classpath:/clds/templates/tca-template.json
184 clamp.config.tca.thresholds.template=classpath:/clds/templates/tca-thresholds-template.json
185
186 #
187 #
188 # Operational Policy request build properties
189 #
190 clamp.config.op.policyDescription=from CLAMP
191 # default
192 clamp.config.op.templateName=ClosedLoopControlName
193 clamp.config.op.operationTopic=APPC-CL
194 clamp.config.op.notificationTopic=POLICY-CL-MGT
195 clamp.config.op.controller=amsterdam
196 clamp.config.op.policy.appc=APPC
197 #
198 # Sdc service properties
199 clamp.config.sdc.csarFolder = /tmp/sdc-controllers
200 clamp.config.sdc.blueprint.parser.mapping = classpath:/clds/blueprint-parser-mapping.json
201 #
202 clamp.config.ui.location.default=classpath:/clds/templates/ui-location-default.json
203 #
204 # 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
205 clamp.config.action.test.override=false
206 # if action.insert.test.event is true, then insert event even if the action is set to test
207 clamp.config.action.insert.test.event=false
208 clamp.config.clds.service.cache.invalidate.after.seconds=120
209
210 #DCAE Inventory Url Properties
211 clamp.config.dcae.inventory.url=http://localhost:8085
212 clamp.config.dcae.intentory.retry.interval=10000
213 clamp.config.dcae.intentory.retry.limit=5
214
215 #DCAE Dispatcher Url Properties
216 clamp.config.dcae.dispatcher.url=http://localhost:8085
217 clamp.config.dcae.dispatcher.retry.interval=20000
218 clamp.config.dcae.dispatcher.retry.limit=30
219
220 #DCAE Deployment Url Properties
221 clamp.config.dcae.deployment.url=http4://localhost:8085
222 clamp.config.dcae.deployment.userName=test
223 clamp.config.dcae.deployment.password=test
224
225 #Define user permission related parameters, the permission type can be changed but MUST be redefined in clds-users.properties in that case !
226 clamp.config.security.permission.type.cl=org.onap.clamp.clds.cl
227 clamp.config.security.permission.type.cl.manage=org.onap.clamp.clds.cl.manage
228 clamp.config.security.permission.type.cl.event=org.onap.clamp.clds.cl.event
229 clamp.config.security.permission.type.filter.vf=org.onap.clamp.clds.filter.vf
230 clamp.config.security.permission.type.template=org.onap.clamp.clds.template
231 clamp.config.security.permission.type.tosca=org.onap.clamp.clds.tosca
232 #This one indicates the type of instances (dev|prod|perf...), this must be set accordingly in clds-users.properties
233 clamp.config.security.permission.instance=dev
234 clamp.config.security.authentication.class=org.onap.aaf.cadi.principal.X509Principal