Skip to content

Commit

Permalink
Adding volume file
Browse files Browse the repository at this point in the history
  • Loading branch information
tpfau committed Dec 11, 2023
1 parent ccfd9d5 commit 72a929c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions k8s_volumes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: llm-mongo
namespace: rse
spec:
storageClassName: nfs-client # Empty string must be explicitly set otherwise default StorageClass will be set
accessModes: [ReadWriteOnce] # This should only ever be accessed by one mongoDB server instance
resources:
requests:
storage: 1Gi
#---

0 comments on commit 72a929c

Please sign in to comment.