We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efc6edf commit 4ff509dCopy full SHA for 4ff509d
ci/helm-chart/templates/deployment.yaml
@@ -177,9 +177,12 @@ spec:
177
{{- if .existingClaim }}
178
persistentVolumeClaim:
179
claimName: {{ .existingClaim }}
180
- {{- else }}
+ {{- else if .hostPath }}
181
hostPath:
182
path: {{ .hostPath }}
183
type: Directory
184
+ {{- else }}
185
+ emptyDir:
186
+ {{- toYaml .emptyDir | nindent 10 }}
187
{{- end }}
188
ci/helm-chart/values.yaml
@@ -190,6 +190,7 @@ extraVolumeMounts: []
190
# readOnly: true
191
# existingClaim: volume-claim
192
# hostPath: ""
193
+ # emptyDir: {}
194
195
extraConfigmapMounts: []
196
# - name: certs-configmap
0 commit comments