{{- if .Values.persistentVolumeClaim.createLogStorage }}
- name: {{ include "memgraph.fullname" . }}-lib-storage # here is the incorrect line
mountPath: /var/log/memgraph
{{- end }}
Should be changed to
{{- if .Values.persistentVolumeClaim.createLogStorage }}
- name: {{ include "memgraph.fullname" . }}-log-storage # should be log-storage here instead of lib-storage
mountPath: /var/log/memgraph
{{- end }}
Contact Details
No response
What happened?
The volume mount name for the log storage claim is incorrect. It points to the lib storage claim.
https://github.com/memgraph/helm-charts/blob/main/charts/memgraph/templates/statefulset.yaml#L181-L184
Should be changed to
Chart type
Standalone
Chart version
0.1.x
Environment
My environment is not listed
Relevant log output
No response