Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 1 | # Copyright © 2017-2018 AT&T Intellectual Property. |
| 2 | # Modifications Copyright © 2018 IBM. |
| 3 | # Modifications Copyright © 2019 Bell Canada. |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 4 | # |
| 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. |
| 16 | # |
| 17 | appName=ControllerBluePrints |
| 18 | ms_name=org.onap.ccsdk.apps.controllerblueprints |
| 19 | appVersion=1.0.0 |
| 20 | |
Alexis de Talhouët | 43c67e0 | 2018-09-20 16:49:16 -0400 | [diff] [blame] | 21 | # Basic Authentication |
| 22 | basic-auth.user-name=ccsdkapps |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 23 | basic-auth.hashed-pwd={bcrypt}$2a$10$MJxhNiOAffxbyrV9.rrOUewP9Q/ASg5Nit2cmP.yBaXGsVXo8BW3y |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 24 | |
| 25 | logging.level.org.springframework.web=INFO |
| 26 | logging.level.org.hibernate.SQL=warn |
| 27 | logging.level.org.hibernate.type.descriptor.sql=debug |
| 28 | |
| 29 | #To Remove Null in JSON API Response |
| 30 | spring.jackson.default-property-inclusion=non_null |
| 31 | |
| 32 | #Swagger Configuration |
Alexis de Talhouët | 43c67e0 | 2018-09-20 16:49:16 -0400 | [diff] [blame] | 33 | swagger.contact.name=CCSDK team |
| 34 | swagger.contact.url=www.onap.org |
| 35 | swagger.contact.email=onap-discuss@lists.onap.org |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 36 | |
| 37 | spring.jpa.properties.hibernate.show_sql=true |
| 38 | spring.jpa.properties.hibernate.use_sql_comments=true |
| 39 | spring.jpa.properties.hibernate.format_sql=true |
| 40 | |
| 41 | # spring.datasource.url, spring.datasource.username,spring.datasource.password may be overridden by ENV variables |
| 42 | spring.datasource.url=jdbc:mysql://controller-blueprints-db:3306/sdnctl |
| 43 | spring.datasource.username=sdnctl |
| 44 | spring.datasource.password=sdnctl |
| 45 | spring.datasource.driver-class-name=org.mariadb.jdbc.Driver |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 46 | spring.jpa.show-sql=true |
| 47 | spring.jpa.hibernate.ddl-auto=none |
| 48 | spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy |
| 49 | spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 50 | |
| 51 | # Load Resource Source Mappings |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 52 | resourceSourceMappings=primary-db=source-primary-db,input=source-input,default=source-default,primary-config-data=source-rest,capability=source-capability |
| 53 | |
| 54 | # Controller Blueprints Core Configuration |
| 55 | controllerblueprints.blueprintDeployPath=/etc/blueprints/deploy |
| 56 | controllerblueprints.blueprintArchivePath=/etc/blueprints/archive |
| 57 | controllerblueprints.blueprintEnrichmentPath=/etc/blueprints/enrichment |
| 58 | # Controller Blueprint Load Configurations |
| 59 | # blueprints.load.initial-data may be overridden by ENV variables |
| 60 | controllerblueprints.loadInitialData={{ .Values.config.initDataLoad }} |
| 61 | controllerblueprints.loadBluePrint=true |
ssteve | dd598e9 | 2019-02-26 17:43:33 -0500 | [diff] [blame] | 62 | controllerblueprints.loadBluePrintPaths=/opt/app/onap/model-catalog/blueprint-model/service-blueprint |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 63 | controllerblueprints.loadModelType=true |
ssteve | dd598e9 | 2019-02-26 17:43:33 -0500 | [diff] [blame] | 64 | controllerblueprints.loadModeTypePaths=/opt/app/onap/model-catalog/definition-type/starter-type |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 65 | controllerblueprints.loadResourceDictionary=true |
ssteve | dd598e9 | 2019-02-26 17:43:33 -0500 | [diff] [blame] | 66 | controllerblueprints.loadResourceDictionaryPaths=/opt/app/onap/model-catalog/resource-dictionary/starter-dictionary |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 67 | |
| 68 | # CBA file extension |
| 69 | controllerblueprints.loadCbaExtension=zip |
| 70 | |
| 71 | # Web server config |
| 72 | server.port=8080 |