Merge "[AAI] Service monitor for scraping prometheus metrics"
[oom.git] / kubernetes / strimzi / components / strimzi-kafka-bridge / templates / strimzi-kb.yaml
1 {{/*
2 # Copyright © 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 apiVersion: kafka.strimzi.io/v1beta2
17 kind: KafkaBridge
18 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
19 spec:
20   replicas: {{ .Values.replicaCount }}
21   bootstrapServers: {{ include "common.release" . }}-strimzi-kafka-bootstrap:{{ .Values.config.kafkaInternalPort }}
22   authentication:
23     type: {{ .Values.config.saslMechanism }}
24     username: {{ .Values.config.strimziKafkaAdminUser }}
25     passwordSecret:
26       secretName: {{ .Values.config.strimziKafkaAdminUser }}
27       password: password
28   enableMetrics: {{ .Values.config.enableMetrics }}
29   http:
30     port: {{ .Values.config.port }}