This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git


The following commit(s) were added to refs/heads/master by this push:
     new 8f5259d  fix: omit empty broker clusterIP to avoid GitOps drift (#702)
8f5259d is described below

commit 8f5259dcd501de803e52098ce1aaac15f88c82a2
Author: yusufdaud-anaplan <[email protected]>
AuthorDate: Tue Jul 7 12:02:00 2026 +0100

    fix: omit empty broker clusterIP to avoid GitOps drift (#702)
---
 charts/pulsar/templates/broker-service.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/charts/pulsar/templates/broker-service.yaml 
b/charts/pulsar/templates/broker-service.yaml
index a761af6..d02d64f 100644
--- a/charts/pulsar/templates/broker-service.yaml
+++ b/charts/pulsar/templates/broker-service.yaml
@@ -46,7 +46,9 @@ spec:
   - name: "{{ .Values.tlsPrefix }}pulsarssl"
     port: {{ .Values.broker.ports.pulsarssl }}
   {{- end }}
+  {{- if .Values.broker.service.clusterIP }}
   clusterIP: "{{ .Values.broker.service.clusterIP }}"
+  {{- end }}
   selector:
     {{- include "pulsar.matchLabels" . | nindent 4 }}
     component: {{ .Values.broker.component }}

Reply via email to