yusufdaud-anaplan opened a new issue, #700:
URL: https://github.com/apache/pulsar-helm-chart/issues/700

   ## Problem
   
   `broker-service.yaml` renders:
   
   ```yaml
   clusterIP: "{{ .Values.broker.service.clusterIP }}"
   ```
   
   The default value is `""`. After apply, Kubernetes assigns a real IP (e.g. 
`10.96.x.x`). Argo CD then always diffs desired vs live → perpetual OutOfSync
   
   ## Suggested fix
   
   Omit `clusterIP` when the value is empty (same pattern as 
`standalone-service.yaml`):
   
   ```yaml
   {{- if ne .Values.broker.service.clusterIP "" }}
     clusterIP: "{{ .Values.broker.service.clusterIP }}"
   {{- end }}
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to