blob: 6cc45cc5c644fd081018ec281160300347ce4e77 [file] [log] [blame]
rameshiyer273c3402d2021-09-21 15:14:39 +01001# ============LICENSE_START=======================================================
efiacor6910bbe2023-03-03 14:53:16 +00002# Copyright (C) 2021-2023 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:
liamfallon72ffede2022-10-20 11:19:18 +010020 autoconfigure:
21 exclude: >
22 org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,
23 org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration,
24 org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000025 security:
26 user:
27 name: ${RESTSERVER_USER}
28 password: ${RESTSERVER_PASSWORD}
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010029
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000030security:
31 enable-csrf: false
32
rameshiyer273c3402d2021-09-21 15:14:39 +010033participant:
34 intermediaryParameters:
35 reportingTimeIntervalMs: 120000
36 description: Participant Description
saul.gill5e611402023-03-02 11:49:23 +000037 participantId: 101c62b3-8918-41b9-a747-d21eb79c6c01
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000038 clampAutomationCompositionTopics:
rameshiyer273c3402d2021-09-21 15:14:39 +010039 topicSources:
efiacor6910bbe2023-03-03 14:53:16 +000040 -
41 useHttps: false
rameshiyer273c3402d2021-09-21 15:14:39 +010042 fetchTimeout: 15000
efiacor6910bbe2023-03-03 14:53:16 +000043 topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }}
44 {{ if .Values.global.useStrimziKafka }}
45 topicCommInfrastructure: kafka
46 servers:
47 - {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092
48 additionalProps:
49 group.id: {{ (first .Values.kafkaUser.acls).name }}
50 allow.auto.create.topics: false
51 security.protocol: SASL_PLAINTEXT
52 sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }}
53 sasl.jaas.config: ${SASL_JAAS_CONFIG}
54 {{ else }}
55 topicCommInfrastructure: dmaap
rameshiyer273c3402d2021-09-21 15:14:39 +010056 servers:
57 - ${topicServer:message-router}
efiacor6910bbe2023-03-03 14:53:16 +000058 {{ end }}
59 topicSinks:
60 -
61 useHttps: false
62 fetchTimeout: 15000
63 topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }}
64 {{ if .Values.global.useStrimziKafka }}
65 topicCommInfrastructure: kafka
66 servers:
67 - {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092
68 additionalProps:
69 client.id: {{ (first .Values.kafkaUser.acls).name }}-client-id
70 security.protocol: SASL_PLAINTEXT
71 sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }}
72 sasl.jaas.config: ${SASL_JAAS_CONFIG}
73 {{ else }}
rameshiyer273c3402d2021-09-21 15:14:39 +010074 topicCommInfrastructure: dmaap
efiacor6910bbe2023-03-03 14:53:16 +000075 servers:
76 - ${topicServer:message-router}
77 {{ end }}
saul.gill5e611402023-03-02 11:49:23 +000078 participantSupportedElementTypes:
79 -
80 typeName: org.onap.policy.clamp.acm.HttpAutomationCompositionElement
81 typeVersion: 1.0.0
82
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000083
84management:
85 endpoints:
86 web:
87 exposure:
88 include: health, metrics, prometheus
89server:
90 port: 8084
91 servlet:
92 context-path: /onap/httpparticipant
amatthews736bf372021-12-14 16:04:15 +000093 ssl:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010094 enabled: false
amatthews736bf372021-12-14 16:04:15 +000095