mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Fixes helm/charts#19111 (#19583)
Fix missing quotation in config.toml when using http-01 as the acme validation method Signed-off-by: Zsolt Szeberenyi <zsolt@szeberenyi.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
b47f76be2c
commit
cc7e5d7aeb
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: traefik
|
||||
version: 1.82.3
|
||||
version: 1.82.4
|
||||
appVersion: 1.7.19
|
||||
description: A Traefik based Kubernetes ingress controller with Let's Encrypt support
|
||||
keywords:
|
||||
|
||||
@@ -312,7 +312,7 @@ data:
|
||||
{{- end }}
|
||||
{{- else if eq .Values.acme.challengeType "http-01" }}
|
||||
[acme.httpChallenge]
|
||||
entryPoint = {{ .Values.acme.httpChallenge.entrypoint }}
|
||||
entryPoint = {{ .Values.acme.httpChallenge.entrypoint | quote }}
|
||||
{{- else if eq .Values.acme.challengeType "tls-alpn-01" }}
|
||||
[acme.tlsChallenge]
|
||||
{{- end }}
|
||||
|
||||
Reference in New Issue
Block a user