blob: 406b59c545f1f2ca86ecba1c5f6464868fb55c1d [file] [log] [blame]
rameshiyer273c3402d2021-09-21 15:14:39 +01001# ============LICENSE_START=======================================================
FrancescoFioraEst9c79e262022-02-22 13:12:19 +00002# Copyright (C) 2021-2022 Nordix Foundation.
rameshiyer273c3402d2021-09-21 15:14:39 +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
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000019spring:
20 security:
21 user:
22 name: ${RESTSERVER_USER}
23 password: ${RESTSERVER_PASSWORD}
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010024{{- if .Values.config.useStrimziKafka }}
25 kafka:
26 bootstrap-servers: {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
27 security.protocol: SASL_PLAINTEXT
28 properties.sasl:
29 mechanism: SCRAM-SHA-512
30 jaas.config: ${JAASLOGIN}
31{{ else }}
32{{ toYaml .Values.config.eventPublisher | nindent 2 }}
33{{- end }}
34
35{{- if .Values.config.additional }}
36{{ toYaml .Values.config.additional | nindent 2 }}
37{{- end }}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000038security:
39 enable-csrf: false
40
rameshiyer273c3402d2021-09-21 15:14:39 +010041participant:
42 intermediaryParameters:
43 reportingTimeIntervalMs: 120000
44 description: Participant Description
45 participantId:
46 name: HttpParticipant0
47 version: 1.0.0
48 participantType:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000049 name: org.onap.policy.clamp.acm.HttpParticipant
rameshiyer273c3402d2021-09-21 15:14:39 +010050 version: 2.3.4
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000051 clampAutomationCompositionTopics:
rameshiyer273c3402d2021-09-21 15:14:39 +010052 topicSources:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000053 - topic: POLICY-ACRUNTIME-PARTICIPANT
rameshiyer273c3402d2021-09-21 15:14:39 +010054 servers:
55 - ${topicServer:message-router}
56 topicCommInfrastructure: dmaap
57 fetchTimeout: 15000
58 useHttps: true
59 topicSinks:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000060 - topic: POLICY-ACRUNTIME-PARTICIPANT
rameshiyer273c3402d2021-09-21 15:14:39 +010061 servers:
62 - ${topicServer:message-router}
63 topicCommInfrastructure: dmaap
64 useHttps: true
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000065
66management:
67 endpoints:
68 web:
69 exposure:
70 include: health, metrics, prometheus
71server:
72 port: 8084
73 servlet:
74 context-path: /onap/httpparticipant