Merge "Fix exception when registration has no additionProperties"
[cps.git] / cps-application / src / main / resources / application.yml
1 #  ============LICENSE_START=======================================================\r
2 #  Copyright (C) 2021 Pantheon.tech\r
3 #  Modifications Copyright (C) 2021 Bell Canada\r
4 #  Modifications Copyright (C) 2021 Nordix Foundation\r
5 #  ================================================================================\r
6 #  Licensed under the Apache License, Version 2.0 (the "License");\r
7 #  you may not use this file except in compliance with the License.\r
8 #  You may obtain a copy of the License at\r
9 #\r
10 #        http://www.apache.org/licenses/LICENSE-2.0\r
11 #\r
12 #  Unless required by applicable law or agreed to in writing, software\r
13 #  distributed under the License is distributed on an "AS IS" BASIS,\r
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
15 #  See the License for the specific language governing permissions and\r
16 #  limitations under the License.\r
17 #\r
18 #  SPDX-License-Identifier: Apache-2.0\r
19 #  ============LICENSE_END=========================================================\r
20 \r
21 server:\r
22     port: 8080\r
23 \r
24 rest:\r
25     api:\r
26         cps-base-path: /cps/api\r
27         ncmp-base-path: /cps-ncmp/api\r
28 \r
29 spring:\r
30     main:\r
31         banner-mode: "off"\r
32     jpa:\r
33         ddl-auto: create\r
34         open-in-view: false\r
35         properties:\r
36             hibernate:\r
37                 enable_lazy_load_no_trans: true\r
38                 dialect: org.hibernate.dialect.PostgreSQLDialect\r
39 \r
40     datasource:\r
41         url: jdbc:postgresql://${DB_HOST}:5432/cpsdb\r
42         username: ${DB_USERNAME}\r
43         password: ${DB_PASSWORD}\r
44         driverClassName: org.postgresql.Driver\r
45         initialization-mode: always\r
46 \r
47     cache:\r
48         type: caffeine\r
49         cache-names: yangSchema\r
50         caffeine:\r
51             spec: maximumSize=10000,expireAfterAccess=10m\r
52 \r
53     liquibase:\r
54         change-log: classpath:changelog/changelog-master.yaml\r
55         labels: ${LIQUIBASE_LABELS}\r
56 \r
57     servlet:\r
58         multipart:\r
59             enabled: true\r
60             max-file-size: 100MB\r
61             max-request-size: 100MB\r
62 \r
63     kafka:\r
64         bootstrap-servers: ${KAFKA_BOOTSTRAP_SERVER:localhost:9092}\r
65         security:\r
66             protocol: PLAINTEXT\r
67         producer:\r
68             value-serializer: org.springframework.kafka.support.serializer.JsonSerializer\r
69             client-id: cps-core\r
70 \r
71 notification:\r
72     data-updated:\r
73         enabled: false\r
74         topic: ${CPS_CHANGE_EVENT_TOPIC:cps.data-updated-events}\r
75         filters:\r
76             enabled-dataspaces: ${DATASPACE_FILTER_PATTERNS:""}\r
77 \r
78 springdoc:\r
79     swagger-ui:\r
80         url: /openapi.yml\r
81         path: /swagger-ui/index.html\r
82 \r
83 security:\r
84     # comma-separated uri patterns which do not require authorization\r
85     permit-uri: /manage/**,/swagger-ui/**,/swagger-resources/**,/v3/api-docs\r
86     auth:\r
87         username: ${CPS_USERNAME}\r
88         password: ${CPS_PASSWORD}\r
89 \r
90 # Actuator\r
91 management:\r
92     server:\r
93         port: 8081\r
94     endpoints:\r
95         web:\r
96             base-path: /manage\r
97             exposure:\r
98                 include: info,health,loggers,prometheus\r
99     endpoint:\r
100         health:\r
101             show-details: always\r
102             # kubernetes probes: liveness and readiness\r
103             probes:\r
104                 enabled: true\r
105 \r
106 logging:\r
107     level:\r
108         org:\r
109             springframework: INFO\r
110 \r
111 dmi:\r
112     auth:\r
113         username: ${DMI_USERNAME}\r
114         password: ${DMI_PASSWORD}\r