Skip to content

Commit 27274f3

Browse files
authored
Helm: Add emptyDir for the querier staging path (#881)
Add emptyDir for the querier staging path. This commit fixes querier startup on k8s with `readOnlyRootFilesystem`. Fixes #880
1 parent e04653f commit 27274f3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

helm/templates/querier-statefulset.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,16 @@ spec:
6868
- containerPort: 8000
6969
resources:
7070
{{- toYaml .Values.parseable.resources | nindent 12 }}
71-
{{- if .Values.parseable.persistence.querier.enabled }}
7271
volumeMounts:
72+
- mountPath: "/parseable/staging"
73+
name: stage-volume
74+
{{- if .Values.parseable.persistence.querier.enabled }}
7375
- mountPath: "/parseable/hot-tier"
7476
name: hot-tier-volume
7577
{{- end }}
78+
volumes:
79+
- emptyDir: {}
80+
name: stage-volume
7681
volumeClaimTemplates:
7782
{{- if .Values.parseable.persistence.querier.enabled }}
7883
- metadata:

0 commit comments

Comments
 (0)