From fd1a7b5e62cffe4caf251cc20c5995af987003a5 Mon Sep 17 00:00:00 2001 From: Thilo-Alexander Ginkel Date: Sat, 23 Aug 2025 18:31:14 +0200 Subject: [PATCH] Helm Chart: support wildcards for s3-ingress host by quoting value (#7155) --- k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml b/k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml index 7b279793b..f9c362065 100644 --- a/k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml +++ b/k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml @@ -41,6 +41,6 @@ spec: servicePort: {{ .Values.s3.port }} {{- end }} {{- if .Values.s3.ingress.host }} - host: {{ .Values.s3.ingress.host }} + host: {{ .Values.s3.ingress.host | quote }} {{- end }} {{- end }}