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

piotr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git


The following commit(s) were added to refs/heads/master by this push:
     new 3d15e9177 fix(helm): use proper service for UI ingress (#2313)
3d15e9177 is described below

commit 3d15e9177497d14249016c2869903901ffc8fd03
Author: Brandon Arp <[email protected]>
AuthorDate: Thu Nov 6 01:15:07 2025 -0800

    fix(helm): use proper service for UI ingress (#2313)
    
    Fixes a problem with UI ingress definition where the wrong service is used.
---
 helm/charts/iggy/templates/ingress.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/helm/charts/iggy/templates/ingress.yaml 
b/helm/charts/iggy/templates/ingress.yaml
index ccea1039e..ddefbba40 100644
--- a/helm/charts/iggy/templates/ingress.yaml
+++ b/helm/charts/iggy/templates/ingress.yaml
@@ -131,11 +131,11 @@ spec:
             backend:
               {{- if semverCompare ">=1.19-0" 
$.Capabilities.KubeVersion.GitVersion }}
               service:
-                name: {{ $fullName }}
+                name: {{ $fullName }}-ui
                 port:
                   number: {{ $svcPort }}
               {{- else }}
-              serviceName: {{ $fullName }}
+              serviceName: {{ $fullName }}-ui
               servicePort: {{ $svcPort }}
               {{- end }}
           {{- end }}

Reply via email to