This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new e60dafb9ad Support TLS ingress for Hop Web in Helm chart Fix #6503
(#6504)
e60dafb9ad is described below
commit e60dafb9adabead3ba88a6819b8c509f5ae84083
Author: Worms David <[email protected]>
AuthorDate: Tue Feb 10 10:44:25 2026 +0100
Support TLS ingress for Hop Web in Helm chart Fix #6503 (#6504)
---
helm/hop/templates/hop-web/web-ingress.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/helm/hop/templates/hop-web/web-ingress.yaml
b/helm/hop/templates/hop-web/web-ingress.yaml
index 9df1bc2c92..7920d3ef8b 100644
--- a/helm/hop/templates/hop-web/web-ingress.yaml
+++ b/helm/hop/templates/hop-web/web-ingress.yaml
@@ -34,6 +34,19 @@ metadata:
{{- end }}
{{- end }}
spec:
+{{- if .Values.web.ingress.className }}
+ ingressClassName: {{ .Values.web.ingress.className }}
+{{- end }}
+{{- if .Values.web.ingress.tls }}
+ tls:
+ {{- range .Values.web.ingress.tls }}
+ - hosts:
+ {{- range .hosts }}
+ - {{ . | quote }}
+ {{- end }}
+ secretName: {{ .secretName }}
+ {{- end }}
+{{- end }}
rules:
{{- if .Values.web.ingress.hosts }}
{{- range .Values.web.ingress.hosts }}