Volumes
At the moment, the application needs two persistent volumes:
The
/data/
folder whereneo4j
stores its database andthe folder
/nitro-backend/public/uploads
where the backend stores uploads.
As a matter of precaution, the persistent volume claims that setup these volumes live in a separate folder. You don't want to accidently loose all your data in your database by running kubectl delete -f human-connection/
, do you?
Create Persistent Volume Claims
Run the following:
Change Reclaim Policy
We recommend to change the ReclaimPolicy
, so if you delete the persistent volume claims, the associated volumes will be released, not deleted:
Get the volume id from above, then change ReclaimPolicy
with:
Last updated