Skip to content

Commit

Permalink
fix: adds ClusterIP service for bootstrap with ClusterIP
Browse files Browse the repository at this point in the history
  • Loading branch information
seagyn committed Apr 29, 2024
1 parent 9343e91 commit 4aeff4a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/confluent/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: lsdmesp-confluent
version: "0.5.6"
appVersion: "0.5.6"
version: "0.5.7"
appVersion: "0.5.7"
description: 'LSDMESP CFK: LSD Event Streaming Platform with Confluent Operator'
keywords:
- lsdmesp
Expand Down
17 changes: 16 additions & 1 deletion charts/confluent/templates/011.kafka-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
{{- $kafka := .Values.lsdmesp.confluent.kafka -}}
{{- if $kafka.ingress.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-kafka
spec:
ports:
- name: external
port: 9092
selector:
app: kafka
clusterId: {{ .Release.Name }}
confluent-platform: "true"
type: kafka
sessionAffinity: None
type: ClusterIP
---
apiVersion: networking.k8s.io/v1
kind: Ingress
Expand All @@ -17,7 +32,7 @@ spec:
paths:
- backend:
service:
name: kafka
name: kafka-boot
port:
number: 9092
path: /
Expand Down

0 comments on commit 4aeff4a

Please sign in to comment.