blob: 4fb70fc3371fd083d0123318bcedcc4c90564209 [file] [log] [blame]
saul.gill7124a4b2021-09-09 12:02:49 +01001# ============LICENSE_START=======================================================
FrancescoFioraEst9c79e262022-02-22 13:12:19 +00002# Copyright (C) 2021-2022 Nordix Foundation.
saul.gill7124a4b2021-09-09 12:02:49 +01003# ================================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
19spring:
20 security:
21 user:
22 name: ${RUNTIME_USER}
23 password: ${RUNTIME_PASSWORD}
24 http:
25 converters:
26 preferred-json-mapper: gson
liamfallon312ab372021-12-13 14:33:33 +000027 datasource:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000028 url: jdbc:mariadb://{{ .Values.db.service.name }}:{{ .Values.db.service.internalPort }}/clampacm
liamfallon312ab372021-12-13 14:33:33 +000029 driverClassName: org.mariadb.jdbc.Driver
30 username: ${SQL_USER}
31 password: ${SQL_PASSWORD}
32 hikari:
33 connectionTimeout: 30000
34 idleTimeout: 600000
35 maxLifetime: 1800000
36 maximumPoolSize: 10
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000037 jpa:
38 hibernate:
39 ddl-auto: update
40 naming:
41 physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
42 implicit-strategy: org.onap.policy.common.spring.utils.CustomImplicitNamingStrategy
43 properties:
44 hibernate:
45 dialect: org.hibernate.dialect.MariaDB103Dialect
46 format_sql: true
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010047 kafka:
Sirisha_Manchikantib402a592022-09-09 12:01:20 +010048 consumer:
49 group-id: {{ .Values.config.kafka.consumer.groupId }}
50{{- if .Values.config.useStrimziKafka }}
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010051 bootstrap-servers: {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
52 security.protocol: SASL_PLAINTEXT
53 properties.sasl:
54 mechanism: SCRAM-SHA-512
55 jaas.config: ${JAASLOGIN}
56{{ else }}
Sirisha_Manchikantib402a592022-09-09 12:01:20 +010057{{ toYaml .Values.config.eventConsumption | nindent 2 }}
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010058{{- end }}
saul.gill7124a4b2021-09-09 12:02:49 +010059
60security:
61 enable-csrf: false
62
63server:
64 port: 6969
65 servlet:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000066 context-path: /onap/policy/clamp/acm
saul.gill7124a4b2021-09-09 12:02:49 +010067 error:
68 path: /error
69
70
71runtime:
saul.gill7124a4b2021-09-09 12:02:49 +010072 participantParameters:
73 heartBeatMs: 120000
74 maxMessageAgeMs: 600000
75 maxStatusWaitMs: 100000
76 updateParameters:
77 maxRetryCount: 3
78 maxWaitMs: 100000
saul.gill7124a4b2021-09-09 12:02:49 +010079 topicParameterGroup:
80 topicSources:
81 -
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000082 topic: POLICY-ACRUNTIME-PARTICIPANT
saul.gill7124a4b2021-09-09 12:02:49 +010083 servers:
84 - ${topicServer:message-router}
85 topicCommInfrastructure: dmaap
86 useHttps: true
87 fetchTimeout: 15000
88 topicSinks:
89 -
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000090 topic: POLICY-ACRUNTIME-PARTICIPANT
saul.gill7124a4b2021-09-09 12:02:49 +010091 servers:
92 - ${topicServer:message-router}
93 topicCommInfrastructure: dmaap
94 useHttps: true
95
Sirisha_Manchikantib402a592022-09-09 12:01:20 +010096# If Strimzi Kafka to be used for communication, replace clampAutomationCompositionTopics configuration with below
97# topicParameterGroup:
98# topicSources:
99# -
100# topic: policy-acruntime-participant
101# servers:
102# - {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
103# topicCommInfrastructure: kafka
104# useHttps: true
105# fetchTimeout: 15000
106# additionalProps:
107# security.protocol: SASL_PLAINTEXT
108# sasl.mechanism: SCRAM-SHA-512
109# sasl.jaas.config: ${JAASLOGIN}
110# topicSinks:
111# -
112# topic: policy-acruntime-participant
113# servers:
114# - {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
115# topicCommInfrastructure: kafka
116# useHttps: true
117# additionalProps:
118# security.protocol: SASL_PLAINTEXT
119# sasl.mechanism: SCRAM-SHA-512
120# sasl.jaas.config: ${JAASLOGIN}
121
saul.gill7124a4b2021-09-09 12:02:49 +0100122management:
123 endpoints:
124 web:
125 exposure:
126 include: health, metrics, prometheus