blob: 761f19c5e3e05ecbab510a8eb1b3ee036da58cee [file] [log] [blame]
rameshiyer2701b8cc02021-09-21 15:07:50 +01001# ============LICENSE_START=======================================================
Lathish738ed772022-02-15 20:12:09 +05302# Copyright (C) 2021-2022 Nordix Foundation. All rights reserved.
rameshiyer2701b8cc02021-09-21 15:07:50 +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:
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
rameshiyer2701b8cc02021-09-21 15:07:50 +010025 security:
26 user:
27 name: ${RESTSERVER_USER}
28 password: ${RESTSERVER_PASSWORD}
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010029
rameshiyer2701b8cc02021-09-21 15:07:50 +010030security:
31 enable-csrf: false
32
33participant:
34 localChartDirectory: /home/policy/local-charts
35 infoFileName: CHART_INFO.json
36 intermediaryParameters:
37 reportingTimeIntervalMs: 120000
38 description: Participant Description
saul.gill5e611402023-03-02 11:49:23 +000039 participantId: 101c62b3-8918-41b9-a747-d21eb79c6c02
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000040 clampAutomationCompositionTopics:
rameshiyer2701b8cc02021-09-21 15:07:50 +010041 topicSources:
42 -
efiacor6910bbe2023-03-03 14:53:16 +000043 useHttps: false
44 fetchTimeout: 15000
45 topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }}
46 {{ if .Values.global.useStrimziKafka }}
47 topicCommInfrastructure: kafka
48 servers:
49 - {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092
50 additionalProps:
51 group.id: {{ (first .Values.kafkaUser.acls).name }}
52 allow.auto.create.topics: false
53 security.protocol: SASL_PLAINTEXT
54 sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }}
55 sasl.jaas.config: ${SASL_JAAS_CONFIG}
56 {{ else }}
57 topicCommInfrastructure: dmaap
rameshiyer2701b8cc02021-09-21 15:07:50 +010058 servers:
59 - ${topicServer:message-router}
efiacor6910bbe2023-03-03 14:53:16 +000060 {{ end }}
rameshiyer2701b8cc02021-09-21 15:07:50 +010061 topicSinks:
62 -
efiacor6910bbe2023-03-03 14:53:16 +000063 useHttps: false
64 fetchTimeout: 15000
65 topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }}
66 {{ if .Values.global.useStrimziKafka }}
67 topicCommInfrastructure: kafka
68 servers:
69 - {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092
70 additionalProps:
71 client.id: {{ (first .Values.kafkaUser.acls).name }}-client-id
72 security.protocol: SASL_PLAINTEXT
73 sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }}
74 sasl.jaas.config: ${SASL_JAAS_CONFIG}
75 {{ else }}
76 topicCommInfrastructure: dmaap
rameshiyer2701b8cc02021-09-21 15:07:50 +010077 servers:
78 - ${topicServer:message-router}
efiacor6910bbe2023-03-03 14:53:16 +000079 {{ end }}
saul.gill5e611402023-03-02 11:49:23 +000080 participantSupportedElementTypes:
81 -
82 typeName: org.onap.policy.clamp.acm.K8SMicroserviceAutomationCompositionElement
83 typeVersion: 1.0.0
rameshiyer2701b8cc02021-09-21 15:07:50 +010084
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000085management:
86 endpoints:
87 web:
88 exposure:
89 include: health, metrics, prometheus
90
rameshiyer2701b8cc02021-09-21 15:07:50 +010091server:
92 # Configuration of the HTTP/REST server. The parameters are defined and handled by the springboot framework.
93 # See springboot documentation.
94 port: 8083
Lathish738ed772022-02-15 20:12:09 +053095 servlet:
96 context-path: /onap/policy/clamp/acm/k8sparticipant
amatthews736bf372021-12-14 16:04:15 +000097 ssl:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010098 enabled: false
amatthews736bf372021-12-14 16:04:15 +000099
rameshiyer2701b8cc02021-09-21 15:07:50 +0100100
Lathish738ed772022-02-15 20:12:09 +0530101logging:
102 # Configuration of logging
103 level:
Lathishe999dad2022-02-28 10:34:46 +0000104 ROOT: INFO
Lathish738ed772022-02-15 20:12:09 +0530105 org.springframework: ERROR
106 org.springframework.data: ERROR
107 org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR
108 org.onap.policy.clamp.controlloop.participant.kubernetes: INFO
109
110 file:
111 name: /var/log/onap/policy/clamp/application.log
112
113chart:
114 api:
Lathishe999dad2022-02-28 10:34:46 +0000115 enabled: false
116
rameshiyer273c81b1d2022-07-18 16:54:51 +0100117# Permitted list of helm repositories. Values are updated from values.yaml