ipex-llm/docker/llm/finetune/lora/kubernetes/templates/nfs-pv.yaml
Heyang Sun b1ac8dc1bc BF16 Lora Finetuning on K8S with OneCCL and Intel MPI (#8775)
* BF16 Lora Finetuning on K8S with OneCCL and Intel MPI

* Update README.md

* format

* refine

* Update README.md

* refine

* Update README.md

* increase nfs volume size to improve IO performance

* fix bugs

* Update README.md

* Update README.md

* fix permission

* move output destination

* Update README.md

* fix wrong base model name in doc

* fix output path in entrypoint

* add a permission-precreated output dir

* format

* move output logs to a persistent storage
2023-08-31 14:56:23 +08:00

15 lines
330 B
YAML

apiVersion: v1
kind: PersistentVolume
metadata:
name: nfs-pv-bigdl-lora-finetuning
namespace: bigdl-lora-finetuning
spec:
capacity:
storage: 15Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: nfs
nfs:
path: {{ .Values.nfsPath }}
server: {{ .Values.nfsServerIp }}