Skip to content

Commit

Permalink
Disable acme volume if kvprovider is configured) (helm#17067)
Browse files Browse the repository at this point in the history
Signed-off-by: florian kinder <florian.kinder@mcl.de>
Signed-off-by: Marius Voila <myself@mariusv.com>
  • Loading branch information
Fank authored and mariusv committed Sep 16, 2019
1 parent a613600 commit 13bfd97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stable/traefik/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: traefik
version: 1.77.3
version: 1.77.4
appVersion: 1.7.14
description: A Traefik based Kubernetes ingress controller with Let's Encrypt support
keywords:
Expand Down
4 changes: 2 additions & 2 deletions stable/traefik/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.acme.enabled }}
{{- if and (.Values.acme.enabled) (not .Values.kvprovider.storeAcme) }}
- mountPath: /acme
name: acme
{{- end }}
Expand Down Expand Up @@ -195,7 +195,7 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- if .Values.acme.enabled }}
{{- if and (.Values.acme.enabled) (not .Values.kvprovider.storeAcme) }}
- name: acme
{{- if .Values.acme.persistence.enabled }}
persistentVolumeClaim:
Expand Down

0 comments on commit 13bfd97

Please sign in to comment.