tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 1 | # ============LICENSE_START=======================================================
|
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 2 | # Copyright (C) 2021 Pantheon.tech
|
| 3 | # Modifications Copyright (C) 2021 Bell Canada
|
sourabh_sourabh | 01b6012 | 2022-01-21 01:46:12 +0530 | [diff] [blame] | 4 | # Modifications Copyright (C) 2021-2022 Nordix Foundation
|
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 5 | # ================================================================================
|
| 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
|
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 11 | #
|
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 12 | # 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 Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 21 | server:
|
puthuparambil.aditya | 52cff68 | 2020-11-05 11:34:41 +0000 | [diff] [blame] | 22 | port: 8080
|
Ruslan Kashapov | 708fd66 | 2021-01-21 09:37:05 +0200 | [diff] [blame] | 23 |
|
| 24 | rest:
|
| 25 | api:
|
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 26 | cps-base-path: /cps/api
|
Renu Kumari | 4d52001 | 2021-08-30 11:50:43 -0400 | [diff] [blame] | 27 | ncmp-base-path: /ncmp
|
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 28 | ncmp-inventory-base-path: /ncmpInventory
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 29 |
|
| 30 | spring:
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 31 | main:
|
| 32 | banner-mode: "off"
|
sourabh_sourabh | 01b6012 | 2022-01-21 01:46:12 +0530 | [diff] [blame] | 33 | application:
|
| 34 | name: "cps-application"
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 35 | 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.aditya | 73d5886 | 2022-01-28 13:22:33 +0000 | [diff] [blame] | 44 | url: jdbc:postgresql://${DB_HOST}:${DB_PORT:5432}/cpsdb
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 45 | username: ${DB_USERNAME}
|
| 46 | password: ${DB_PASSWORD}
|
| 47 | driverClassName: org.postgresql.Driver
|
| 48 | initialization-mode: always
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 49 |
|
Claudio David Gasparini | 1b8a4dd | 2021-01-13 19:12:25 +0100 | [diff] [blame] | 50 | cache:
|
| 51 | type: caffeine
|
| 52 | cache-names: yangSchema
|
| 53 | caffeine:
|
| 54 | spec: maximumSize=10000,expireAfterAccess=10m
|
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 55 |
|
| 56 | liquibase:
|
| 57 | change-log: classpath:changelog/changelog-master.yaml
|
| 58 | labels: ${LIQUIBASE_LABELS}
|
| 59 |
|
niamhcore | 49a609c | 2021-04-07 11:35:19 +0100 | [diff] [blame] | 60 | servlet:
|
| 61 | multipart:
|
| 62 | enabled: true
|
| 63 | max-file-size: 100MB
|
| 64 | max-request-size: 100MB
|
| 65 |
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 66 | 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
|
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 73 | consumer:
|
| 74 | group-id: ${NCMP_CONSUMER_GROUP_ID:ncmp-group}
|
| 75 | key-deserializer: org.springframework.kafka.support.serializer.ErrorHandlingDeserializer
|
| 76 | value-deserializer: org.springframework.kafka.support.serializer.ErrorHandlingDeserializer
|
| 77 | properties:
|
| 78 | spring.deserializer.key.delegate.class: org.apache.kafka.common.serialization.StringDeserializer
|
| 79 | spring.deserializer.value.delegate.class: org.springframework.kafka.support.serializer.JsonDeserializer
|
| 80 | spring.json.value.default.type: org.onap.cps.ncmp.event.model.DmiAsyncRequestResponseEvent
|
| 81 | spring.json.use.type.headers: false
|
| 82 | app:
|
| 83 | ncmp:
|
| 84 | async-m2m:
|
| 85 | topic: ${NCMP_ASYNC_M2M_TOPIC:ncmp-async-m2m}
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 86 |
|
| 87 | notification:
|
| 88 | data-updated:
|
| 89 | enabled: false
|
Bruno Sakoto | 8db6414 | 2021-08-20 18:59:14 -0400 | [diff] [blame] | 90 | topic: ${CPS_CHANGE_EVENT_TOPIC:cps.data-updated-events}
|
Renu Kumari | 8f01bf6 | 2021-08-17 14:06:53 -0400 | [diff] [blame] | 91 | filters:
|
Renu Kumari | 86c74c7 | 2021-08-19 13:11:00 -0400 | [diff] [blame] | 92 | enabled-dataspaces: ${NOTIFICATION_DATASPACE_FILTER_PATTERNS:""}
|
Renu Kumari | cd04807 | 2021-09-02 10:30:09 -0400 | [diff] [blame] | 93 | async:
|
| 94 | enabled: false
|
| 95 | executor:
|
| 96 | core-pool-size: 2
|
| 97 | max-pool-size: 10
|
| 98 | queue-capacity: 500
|
| 99 | wait-for-tasks-to-complete-on-shutdown: true
|
| 100 | thread-name-prefix: Async-
|
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 101 | time-out-value-in-ms: 2000
|
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 102 |
|
JosephKeenan | 2472e61 | 2021-06-23 14:15:52 +0100 | [diff] [blame] | 103 | springdoc:
|
| 104 | swagger-ui:
|
Renu Kumari | 4d52001 | 2021-08-30 11:50:43 -0400 | [diff] [blame] | 105 | disable-swagger-default-url: true
|
| 106 | urlsPrimaryName: cps-core
|
| 107 | urls:
|
| 108 | - name: cps-core
|
| 109 | url: /api-docs/cps-core/openapi.yaml
|
| 110 | - name: cps-ncmp
|
| 111 | url: /api-docs/cps-ncmp/openapi.yaml
|
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 112 | - name: cps-ncmp-inventory
|
| 113 | url: /api-docs/cps-ncmp/openapi-inventory.yaml
|
| 114 |
|
Renu Kumari | 8f01bf6 | 2021-08-17 14:06:53 -0400 | [diff] [blame] | 115 |
|
Ruslan Kashapov | 0d6bbae | 2021-03-11 14:15:49 +0200 | [diff] [blame] | 116 | security:
|
| 117 | # comma-separated uri patterns which do not require authorization
|
Renu Kumari | 139e822 | 2021-10-04 20:59:18 -0400 | [diff] [blame] | 118 | permit-uri: /manage/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/**
|
Ruslan Kashapov | 0d6bbae | 2021-03-11 14:15:49 +0200 | [diff] [blame] | 119 | auth:
|
Renu Kumari | 3da5207 | 2021-04-14 10:14:13 -0400 | [diff] [blame] | 120 | username: ${CPS_USERNAME}
|
| 121 | password: ${CPS_PASSWORD}
|
Ruslan Kashapov | 0d6bbae | 2021-03-11 14:15:49 +0200 | [diff] [blame] | 122 |
|
Ruslan Kashapov | f4d1c98 | 2020-10-29 11:39:31 +0200 | [diff] [blame] | 123 | # Actuator
|
| 124 | management:
|
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 125 | server:
|
| 126 | port: 8081
|
Ruslan Kashapov | f4d1c98 | 2020-10-29 11:39:31 +0200 | [diff] [blame] | 127 | endpoints:
|
| 128 | web:
|
| 129 | base-path: /manage
|
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 130 | exposure:
|
| 131 | include: info,health,loggers,prometheus
|
Ruslan Kashapov | f4d1c98 | 2020-10-29 11:39:31 +0200 | [diff] [blame] | 132 | endpoint:
|
| 133 | health:
|
| 134 | show-details: always
|
| 135 | # kubernetes probes: liveness and readiness
|
| 136 | probes:
|
| 137 | enabled: true
|
| 138 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 139 | logging:
|
sourabh_sourabh | ac5ae3e | 2022-04-22 22:47:41 +0100 | [diff] [blame] | 140 | format: json
|
Rishi Chail | 8af414a | 2020-10-08 12:33:33 +0100 | [diff] [blame] | 141 | level:
|
| 142 | org:
|
| 143 | springframework: INFO
|
sourabh_sourabh | 01b6012 | 2022-01-21 01:46:12 +0530 | [diff] [blame] | 144 | onap:
|
| 145 | cps: INFO
|
DylanB95EST | 324eb16 | 2022-05-16 10:45:56 +0100 | [diff] [blame] | 146 |
|
| 147 | dmi:
|
| 148 | auth:
|
| 149 | username: ${DMI_USERNAME}
|
| 150 | password: ${DMI_PASSWORD}
|
| 151 | api:
|
| 152 | base-path: dmi
|
| 153 |
|
| 154 | timers:
|
| 155 | advised-modules-sync:
|
| 156 | sleep-time-ms: 30000 |