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:
Zsolt Szeberenyi
2019-12-13 01:42:54 -08:00
committed by Kubernetes Prow Robot
parent b47f76be2c
commit cc7e5d7aeb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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 }}