Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 1 | # Copyright (c) 2019 IBM, Bell Canada.
|
| 2 | #
|
| 3 | # Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 | # you may not use this file except in compliance with the License.
|
| 5 | # You may obtain a copy of the License at
|
| 6 | #
|
| 7 | # http://www.apache.org/licenses/LICENSE-2.0
|
| 8 | #
|
| 9 | # Unless required by applicable law or agreed to in writing, software
|
| 10 | # distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 | # See the License for the specific language governing permissions and
|
| 13 | # limitations under the License.
|
| 14 | #logging.level.web=DEBUG
|
| 15 | appName={{.Values.config.applicationName}}
|
| 16 | ms_name={{.Values.config.msName}}
|
| 17 | appVersion={{.Values.config.bundleVersion}}
|
| 18 | blueprintsprocessor.grpcEnable={{.Values.config.grpcEnabled}}
|
| 19 | blueprintsprocessor.httpPort={{.Values.service.http.internalPort}}
|
| 20 | blueprintsprocessor.grpcPort={{.Values.service.grpc.internalPort}}
|
| 21 | #Blueprint Processor File Execution and Handling Properties
|
| 22 | blueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
|
| 23 | blueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
|
| 24 | #Primary Database Configuration
|
| 25 | blueprintsprocessor.db.primary.url=jdbc:mysql://blueprints-processor-db:3306/sdnctl
|
| 26 | blueprintsprocessor.db.primary.username=sdnctl
|
| 27 | blueprintsprocessor.db.primary.password=sdnctl
|
| 28 | blueprintsprocessor.db.primary.driverClassName=org.mariadb.jdbc.Driver
|
| 29 | blueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
|
| 30 | blueprintsprocessor.db.primary.hibernateDDLAuto=update
|
| 31 | blueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
|
| 32 | blueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
|
| 33 | # Web server config
|
| 34 | server.port=8080 |