Skip to content

Commit 9e90718

Browse files
committed
Add PVC.
1 parent 506993c commit 9e90718

File tree

1 file changed

+23
-1
lines changed
  • cloud-infrastructure/ai-infra-gpu/ai-infrastructure/nemo-megatron-training-oke/files/training/templates

1 file changed

+23
-1
lines changed

cloud-infrastructure/ai-infra-gpu/ai-infrastructure/nemo-megatron-training-oke/files/training/templates/pv.yaml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,26 @@ spec:
1717
server: {{ .Values.storage.fss_name }}
1818
mountOptions:
1919
- nconnect=16
20-
20+
---
21+
apiVersion: v1
22+
kind: PersistentVolumeClaim
23+
metadata:
24+
name: {{ .Release.Name }}-pv
25+
spec:
26+
accessModes:
27+
- ReadWriteMany
28+
resources:
29+
requests:
30+
storage: 1Gi
31+
selector:
32+
matchLabels:
33+
type: nfs
34+
storageClassName: ""
35+
volumeMode: Filesystem
36+
volumeName: {{ .Release.Name }}-pv
37+
status:
38+
accessModes:
39+
- ReadWriteMany
40+
capacity:
41+
storage: 50Gi
42+
phase: Bound

0 commit comments

Comments
 (0)