aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo-Alexander Ginkel <tg@tgbyte.de>2025-08-23 18:31:14 +0200
committerGitHub <noreply@github.com>2025-08-23 09:31:14 -0700
commitfd1a7b5e62cffe4caf251cc20c5995af987003a5 (patch)
tree1d75a3cbb62a45a3963dffea23f27fc5756aaafc
parent7d509feef630a614f55bde017b87bd9663f25b23 (diff)
downloadseaweedfs-fd1a7b5e62cffe4caf251cc20c5995af987003a5.tar.xz
seaweedfs-fd1a7b5e62cffe4caf251cc20c5995af987003a5.zip
Helm Chart: support wildcards for s3-ingress host by quoting value (#7155)
-rw-r--r--k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml2
1 files changed, 1 insertions, 1 deletions
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 }}