blob: 7ad22e977ee73f057cc6cedaf060ceea88777c19 [file] [log] [blame]
tragait34a94b92021-03-30 12:02:27 +01001# ============LICENSE_START=======================================================
lukegleeson15b93e72021-07-07 15:25:30 +01002# Copyright (C) 2021 Pantheon.tech
3# Modifications Copyright (C) 2021 Bell Canada
sourabh_sourabh01b60122022-01-21 01:46:12 +05304# Modifications Copyright (C) 2021-2022 Nordix Foundation
tragait34a94b92021-03-30 12:02:27 +01005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
lukegleeson15b93e72021-07-07 15:25:30 +010011#
tragait34a94b92021-03-30 12:02:27 +010012# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18# SPDX-License-Identifier: Apache-2.0
19# ============LICENSE_END=========================================================
20
Rishi Chailb220d742020-09-16 15:23:53 +010021server:
puthuparambil.aditya52cff682020-11-05 11:34:41 +000022 port: 8080
Ruslan Kashapov708fd662021-01-21 09:37:05 +020023
24rest:
25 api:
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010026 cps-base-path: /cps/api
Renu Kumari4d520012021-08-30 11:50:43 -040027 ncmp-base-path: /ncmp
Renu Kumari139e8222021-10-04 20:59:18 -040028 ncmp-inventory-base-path: /ncmpInventory
Rishi Chailb220d742020-09-16 15:23:53 +010029
30spring:
Rishi Chail8af414a2020-10-08 12:33:33 +010031 main:
32 banner-mode: "off"
sourabh_sourabh01b60122022-01-21 01:46:12 +053033 application:
34 name: "cps-application"
Rishi Chail8af414a2020-10-08 12:33:33 +010035 jpa:
36 ddl-auto: create
37 open-in-view: false
38 properties:
39 hibernate:
40 enable_lazy_load_no_trans: true
41 dialect: org.hibernate.dialect.PostgreSQLDialect
42
43 datasource:
puthuparambil.aditya73d58862022-01-28 13:22:33 +000044 url: jdbc:postgresql://${DB_HOST}:${DB_PORT:5432}/cpsdb
Rishi Chail8af414a2020-10-08 12:33:33 +010045 username: ${DB_USERNAME}
46 password: ${DB_PASSWORD}
47 driverClassName: org.postgresql.Driver
48 initialization-mode: always
Rishi Chailb220d742020-09-16 15:23:53 +010049
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010050 cache:
51 type: caffeine
52 cache-names: yangSchema
53 caffeine:
54 spec: maximumSize=10000,expireAfterAccess=10m
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +000055
56 liquibase:
57 change-log: classpath:changelog/changelog-master.yaml
58 labels: ${LIQUIBASE_LABELS}
59
niamhcore49a609c2021-04-07 11:35:19 +010060 servlet:
61 multipart:
62 enabled: true
63 max-file-size: 100MB
64 max-request-size: 100MB
65
Renu Kumariff52b942021-05-27 23:16:32 -040066 kafka:
67 bootstrap-servers: ${KAFKA_BOOTSTRAP_SERVER:localhost:9092}
68 security:
69 protocol: PLAINTEXT
70 producer:
71 value-serializer: org.springframework.kafka.support.serializer.JsonSerializer
72 client-id: cps-core
73
74notification:
75 data-updated:
76 enabled: false
Bruno Sakoto8db64142021-08-20 18:59:14 -040077 topic: ${CPS_CHANGE_EVENT_TOPIC:cps.data-updated-events}
Renu Kumari8f01bf62021-08-17 14:06:53 -040078 filters:
Renu Kumari86c74c72021-08-19 13:11:00 -040079 enabled-dataspaces: ${NOTIFICATION_DATASPACE_FILTER_PATTERNS:""}
Renu Kumaricd048072021-09-02 10:30:09 -040080 async:
81 enabled: false
82 executor:
83 core-pool-size: 2
84 max-pool-size: 10
85 queue-capacity: 500
86 wait-for-tasks-to-complete-on-shutdown: true
87 thread-name-prefix: Async-
Renu Kumari86c74c72021-08-19 13:11:00 -040088
Renu Kumariff52b942021-05-27 23:16:32 -040089
JosephKeenan2472e612021-06-23 14:15:52 +010090springdoc:
91 swagger-ui:
Renu Kumari4d520012021-08-30 11:50:43 -040092 disable-swagger-default-url: true
93 urlsPrimaryName: cps-core
94 urls:
95 - name: cps-core
96 url: /api-docs/cps-core/openapi.yaml
97 - name: cps-ncmp
98 url: /api-docs/cps-ncmp/openapi.yaml
Renu Kumari139e8222021-10-04 20:59:18 -040099 - name: cps-ncmp-inventory
100 url: /api-docs/cps-ncmp/openapi-inventory.yaml
101
Renu Kumari8f01bf62021-08-17 14:06:53 -0400102
Ruslan Kashapov0d6bbae2021-03-11 14:15:49 +0200103security:
104 # comma-separated uri patterns which do not require authorization
Renu Kumari139e8222021-10-04 20:59:18 -0400105 permit-uri: /manage/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/**
Ruslan Kashapov0d6bbae2021-03-11 14:15:49 +0200106 auth:
Renu Kumari3da52072021-04-14 10:14:13 -0400107 username: ${CPS_USERNAME}
108 password: ${CPS_PASSWORD}
Ruslan Kashapov0d6bbae2021-03-11 14:15:49 +0200109
Ruslan Kashapovf4d1c982020-10-29 11:39:31 +0200110# Actuator
111management:
puthuparambil.adityab46d1372021-07-09 12:51:10 +0100112 server:
113 port: 8081
Ruslan Kashapovf4d1c982020-10-29 11:39:31 +0200114 endpoints:
115 web:
116 base-path: /manage
puthuparambil.adityab46d1372021-07-09 12:51:10 +0100117 exposure:
118 include: info,health,loggers,prometheus
Ruslan Kashapovf4d1c982020-10-29 11:39:31 +0200119 endpoint:
120 health:
121 show-details: always
122 # kubernetes probes: liveness and readiness
123 probes:
124 enabled: true
125
Rishi Chailb220d742020-09-16 15:23:53 +0100126logging:
sourabh_sourabhac5ae3e2022-04-22 22:47:41 +0100127 format: json
Rishi Chail8af414a2020-10-08 12:33:33 +0100128 level:
129 org:
130 springframework: INFO
sourabh_sourabh01b60122022-01-21 01:46:12 +0530131 onap:
132 cps: INFO
DylanB95EST324eb162022-05-16 10:45:56 +0100133
134dmi:
135 auth:
136 username: ${DMI_USERNAME}
137 password: ${DMI_PASSWORD}
138 api:
139 base-path: dmi
140
141timers:
142 advised-modules-sync:
143 sleep-time-ms: 30000