From da3cecaa3f04c8d7714480fbad2cd6bb380bdd22 Mon Sep 17 00:00:00 2001 From: Kris Moore Date: Sat, 23 Jan 2021 12:59:26 -0500 Subject: [PATCH] Make CI happy --- charts/ipfs/1.0.0/templates/deployment.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/ipfs/1.0.0/templates/deployment.yaml b/charts/ipfs/1.0.0/templates/deployment.yaml index 2496d13269..78db80cf12 100644 --- a/charts/ipfs/1.0.0/templates/deployment.yaml +++ b/charts/ipfs/1.0.0/templates/deployment.yaml @@ -109,16 +109,16 @@ spec: {{- end}} volumes: - name: data - {{- if ne (include "configuredHostPathData" .) "" }} + {{- if .Values.emptyDirVolumes }} + emptyDir: {} + {{- else }} hostPath: path: {{ template "configuredHostPathData" . }} - {{- else }} - emptyDir: {} {{- end }} - name: staging - {{- if ne (include "configuredHostPathStaging" .) "" }} + {{- if .Values.emptyDirVolumes }} + emptyDir: {} + {{- else }} hostPath: path: {{ template "configuredHostPathStaging" . }} - {{- else }} - emptyDir: {} {{- end }}