Browse Source

Helm Chart: support wildcards for s3-ingress host by quoting value (#7155)

pull/7157/head
Thilo-Alexander Ginkel 1 month ago
committed by GitHub
parent
commit
fd1a7b5e62
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      k8s/charts/seaweedfs/templates/s3/s3-ingress.yaml

2
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 }}
Loading…
Cancel
Save