From 7ead55505b5f113170a3116a63cecea2f60dab43 Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Sun, 10 Nov 2019 12:29:13 +0100 Subject: [PATCH] Add the missing tmp folder required to make the caddy-ingress-controller work --- .../helm/caddyingresscontroller/templates/deployment.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kubernetes/helm/caddyingresscontroller/templates/deployment.yaml b/kubernetes/helm/caddyingresscontroller/templates/deployment.yaml index 042e823..1e9474b 100644 --- a/kubernetes/helm/caddyingresscontroller/templates/deployment.yaml +++ b/kubernetes/helm/caddyingresscontroller/templates/deployment.yaml @@ -64,8 +64,14 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace + volumeMounts: + - name: tmp + mountPath: /tmp args: {{- if .Values.autotls }} - -tls - -email={{ .Values.email }} - {{- end }} \ No newline at end of file + {{- end }} + volumes: + - name: tmp + emptyDir: {}