Merge "[MULTICLOUD] Move multicloud k8s to use strimzi kafka user template"
[oom.git] / kubernetes / policy / components / policy-clamp-ac-pf-ppnt / resources / config / PolicyParticipantParameters.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2021-2022 Nordix Foundation.
3 #  ================================================================================
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
19 spring:
20   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
25   security:
26     user:
27       name: ${RESTSERVER_USER}
28       password: ${RESTSERVER_PASSWORD}
29   kafka:
30     consumer:
31       group-id: {{ .Values.config.kafka.consumer.groupId }}
32 {{- if .Values.config.useStrimziKafka }}
33     bootstrap-servers: {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
34     security.protocol: SASL_PLAINTEXT
35     properties.sasl:
36       mechanism: SCRAM-SHA-512
37       jaas.config: ${JAASLOGIN}
38 {{ else }}
39 {{ toYaml .Values.config.eventConsumption | nindent 2 }}
40 {{- end }}
41
42 security:
43   enable-csrf: false
44
45 participant:
46   pdpGroup: defaultGroup
47   pdpType: apex
48   policyApiParameters:
49     clientName: api
50     hostname: policy-api
51     port: 6969
52     userName: ${API_USER}
53     password: ${API_PASSWORD}
54     useHttps: {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }}
55     allowSelfSignedCerts: true
56   policyPapParameters:
57     clientName: pap
58     hostname: policy-pap
59     port: 6969
60     userName: ${PAP_USER}
61     password: ${PAP_PASSWORD}
62     useHttps: {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }}
63     allowSelfSignedCerts: true
64   intermediaryParameters:
65     reportingTimeIntervalMs: 120000
66     description: Participant Description
67     participantId: 101c62b3-8918-41b9-a747-d21eb79c6c03
68     clampAutomationCompositionTopics:
69       topicSources:
70         -
71           topic: POLICY-ACRUNTIME-PARTICIPANT
72           servers:
73             - ${topicServer:message-router}
74           topicCommInfrastructure: dmaap
75           fetchTimeout: 15000
76           useHttps: "false"
77       topicSinks:
78         -
79           topic: POLICY-ACRUNTIME-PARTICIPANT
80           servers:
81             - ${topicServer:message-router}
82           topicCommInfrastructure: dmaap
83           useHttps: "false"
84     participantSupportedElementTypes:
85       -
86         typeName: org.onap.policy.clamp.acm.PolicyAutomationCompositionElement
87         typeVersion: 1.0.0
88
89 # If Strimzi Kafka to be used for communication, replace clampAutomationCompositionTopics configuration with below
90 #    clampAutomationCompositionTopics:
91 #      topicSources:
92 #        -
93 #          topic: policy-acruntime-participant
94 #          servers:
95 #            - {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
96 #          topicCommInfrastructure: kafka
97 #          fetchTimeout: 15000
98 #          useHttps: true
99 #          additionalProps:
100 #            security.protocol: SASL_PLAINTEXT
101 #            sasl.mechanism: SCRAM-SHA-512
102 #            sasl.jaas.config: ${JAASLOGIN}
103 #      topicSinks:
104 #        -
105 #          topic: policy-acruntime-participant
106 #          servers:
107 #            - {{ include "common.release" . }}-{{ .Values.config.kafkaBootstrap }}:9092
108 #          topicCommInfrastructure: kafka
109 #          useHttps: true
110 #          additionalProps:
111 #            security.protocol: SASL_PLAINTEXT
112 #            sasl.mechanism: SCRAM-SHA-512
113 #            sasl.jaas.config: ${JAASLOGIN}
114
115 management:
116   endpoints:
117     web:
118       exposure:
119         include: health, metrics, prometheus
120
121 server:
122   port: 8085
123   servlet:
124     context-path: /onap/policyparticipant
125   ssl:
126     enabled: {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}
127