blob: 7fde0fd385c3c0c9ab86a9cafd7b975ca33095bf [file] [log] [blame]
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -05001# Copyright © 2017-2018 AT&T Intellectual Property.
2# Modifications Copyright © 2018 IBM.
3# Modifications Copyright © 2019 Bell Canada.
Mike Elliott37cae252018-09-12 14:45:40 -04004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Mike Elliott37cae252018-09-12 14:45:40 -040016
Alexis de Talhouët43c67e02018-09-20 16:49:16 -040017# Basic Authentication
18basic-auth.user-name=ccsdkapps
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050019basic-auth.hashed-pwd={bcrypt}$2a$10$MJxhNiOAffxbyrV9.rrOUewP9Q/ASg5Nit2cmP.yBaXGsVXo8BW3y
Mike Elliott37cae252018-09-12 14:45:40 -040020
21logging.level.org.springframework.web=INFO
22logging.level.org.hibernate.SQL=warn
23logging.level.org.hibernate.type.descriptor.sql=debug
24
Alexis de Talhouët63df1632019-03-20 08:17:58 -040025# To Remove Null in JSON API Response
Mike Elliott37cae252018-09-12 14:45:40 -040026spring.jackson.default-property-inclusion=non_null
27
Alexis de Talhouët63df1632019-03-20 08:17:58 -040028# Swagger Configuration
Alexis de Talhouët43c67e02018-09-20 16:49:16 -040029swagger.contact.name=CCSDK team
30swagger.contact.url=www.onap.org
31swagger.contact.email=onap-discuss@lists.onap.org
Mike Elliott37cae252018-09-12 14:45:40 -040032
Alexis de Talhouët63df1632019-03-20 08:17:58 -040033# DB information
Mike Elliott37cae252018-09-12 14:45:40 -040034spring.jpa.properties.hibernate.show_sql=true
35spring.jpa.properties.hibernate.use_sql_comments=true
36spring.jpa.properties.hibernate.format_sql=true
Alexis de Talhouët63df1632019-03-20 08:17:58 -040037spring.datasource.url=jdbc:mysql://cds-db:3306/sdnctl
Mike Elliott37cae252018-09-12 14:45:40 -040038spring.datasource.username=sdnctl
39spring.datasource.password=sdnctl
40spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050041spring.jpa.show-sql=true
42spring.jpa.hibernate.ddl-auto=none
43spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy
44spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
Mike Elliott37cae252018-09-12 14:45:40 -040045
46# Load Resource Source Mappings
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050047resourceSourceMappings=primary-db=source-primary-db,input=source-input,default=source-default,primary-config-data=source-rest,capability=source-capability
48
49# Controller Blueprints Core Configuration
50controllerblueprints.blueprintDeployPath=/etc/blueprints/deploy
51controllerblueprints.blueprintArchivePath=/etc/blueprints/archive
prathamesh morde2c2280f2019-04-25 12:29:20 -040052controllerblueprints.blueprintWorkingPath=/etc/blueprints/work
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050053# Controller Blueprint Load Configurations
54# blueprints.load.initial-data may be overridden by ENV variables
55controllerblueprints.loadInitialData={{ .Values.config.initDataLoad }}
56controllerblueprints.loadBluePrint=true
sstevedd598e92019-02-26 17:43:33 -050057controllerblueprints.loadBluePrintPaths=/opt/app/onap/model-catalog/blueprint-model/service-blueprint
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050058controllerblueprints.loadModelType=true
sstevedd598e92019-02-26 17:43:33 -050059controllerblueprints.loadModeTypePaths=/opt/app/onap/model-catalog/definition-type/starter-type
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050060controllerblueprints.loadResourceDictionary=true
sstevedd598e92019-02-26 17:43:33 -050061controllerblueprints.loadResourceDictionaryPaths=/opt/app/onap/model-catalog/resource-dictionary/starter-dictionary
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -050062
63# CBA file extension
64controllerblueprints.loadCbaExtension=zip
65
66# Web server config
67server.port=8080