Search code examples
kubernetesmemgraphdb

How to include a persistent volume claim when using Memgraph on Kubernetes?


I run Memgraph on Kubernetes using the sample service+deployment found in the memgraph/bolt-proxy repo. Unfortunately, that config doesn’t include a persistent volume claim. I'd like to keep Memgraph’s log and snapshots persistent in Kubernetes. How can I do that?


Solution

  • Configure a Pod to Use a PersistentVolume for Storage This page shows you how to configure a Pod to use a PersistentVolumeClaim for storage. Here is a summary of the process:

    View More Here