Merge "Created media folders for ResourceDictionary"
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / main / resources / application-dev.properties
1 <<<<<<< HEAD
2 #
3 #  Copyright � 2017-2018 AT&T Intellectual Property.
4 #
5 #  Modifications Copyright © 2019 IBM, Bell Canada.
6 #
7 #  Licensed under the Apache License, Version 2.0 (the "License");
8 #  you may not use this file except in compliance with the License.
9 #  You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #  Unless required by applicable law or agreed to in writing, software
14 #  distributed under the License is distributed on an "AS IS" BASIS,
15 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #  See the License for the specific language governing permissions and
17 #  limitations under the License.
18 #
19 #logging.level.web=DEBUG
20
21 # Web server config
22 server.port=8081
23
24 blueprintsprocessor.grpcEnable=false
25 blueprintsprocessor.httpPort=8081
26 blueprintsprocessor.grpcPort=9111
27 ###NOTE: for remote executor tests, need to enable grpc and it's properties.
28 ###blueprintsprocessor.grpcEnable=false
29 # Assuming running locally 
30 ###blueprintsprocessor.grpcclient.remote-python.type=token-auth
31 ###blueprintsprocessor.grpcclient.remote-python.host=localhost
32 ###blueprintsprocessor.grpcclient.remote-python.port=50051
33 ###blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
34
35 # Blueprint Processor File Execution and Handling Properties
36 ### use absolute paths if testing inside docker
37 ### blueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
38 ### blueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
39 ### blueprintsprocessor.blueprintWorkingPath=/opt/app/onap/blueprints/working
40 blueprintsprocessor.blueprintDeployPath=blueprints/deploy
41 blueprintsprocessor.blueprintArchivePath=blueprints/archive
42 blueprintsprocessor.blueprintWorkingPath=blueprints/work
43 # Primary Database Configuration
44 blueprintsprocessor.db.primary.url=jdbc:mysql://localhost:3306/sdnctl
45 blueprintsprocessor.db.primary.username=sdnctl
46 blueprintsprocessor.db.primary.password=sdnctl
47 blueprintsprocessor.db.primary.driverClassName=org.mariadb.jdbc.Driver
48 blueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
49 blueprintsprocessor.db.primary.hibernateDDLAuto=none
50 blueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
51 blueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
52
53 # Python executor
54 ### If testing in docker, use the absolute paths as Docker view of filesystem will not respect relative paths.
55 ### Don't forget to create directory /opt/app/onap and share it with Docker containers on your system.
56 ###blueprints.processor.functions.python.executor.executionPath=/opt/app/onap/scripts/jython/ccsdk_blueprints
57 ###blueprints.processor.functions.python.executor.modulePaths=/opt/app/onap/scripts/jython/ccsdk_blueprints,/opt/app/onap/scripts/jython/ccsdk_netconf,/opt/app/onap/scripts/jython/ccsdk_restconf
58
59 blueprints.processor.functions.python.executor.executionPath=./../../../components/scripts/python/ccsdk_blueprints
60 blueprints.processor.functions.python.executor.modulePaths=./../../../components/scripts/python/ccsdk_blueprints
61
62 # SDN-C's ODL Restconf Connection Details
63 blueprintsprocessor.restconfEnabled=true
64 blueprintsprocessor.restclient.sdncodl.type=basic-auth
65 blueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
66 blueprintsprocessor.restclient.sdncodl.username=admin
67 blueprintsprocessor.restclient.sdncodl.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
68
69 # Executor Options
70 blueprintprocessor.resourceResolution.enabled=true
71 blueprintprocessor.netconfExecutor.enabled=true
72 blueprintprocessor.restConfExecutor.enabled=true
73 blueprintsprocessor.cliExecutor.enabled=true
74 ### If enabling remote python executor, set this value to true
75 ### blueprintprocessor.remoteScriptCommand.enabled=true
76 blueprintprocessor.remoteScriptCommand.enabled=false
77
78 # Kafka-message-lib Configurations
79 blueprintsprocessor.messageclient.self-service-api.topic=producer.t
80 blueprintsprocessor.messageclient.self-service-api.type=kafka-basic-auth
81 blueprintsprocessor.messageclient.self-service-api.bootstrapServers=127.0.0.1:9092
82 blueprintsprocessor.messageclient.self-service-api.consumerTopic=receiver.t
83 blueprintsprocessor.messageclient.self-service-api.groupId=receiver-id
84 blueprintsprocessor.messageclient.self-service-api.clientId=default-client-id
85 blueprintsprocessor.messageclient.self-service-api.kafkaEnable=false