* seperate trusted-llm and bigdl from lora finetuning * add k8s for trusted llm finetune * refine * refine * rename cpu to tdx in trusted llm * solve conflict * fix typo * resolving conflict * Delete docker/llm/finetune/lora/README.md * fix --------- Co-authored-by: Uxito-Ada <seusunheyang@foxmail.com> Co-authored-by: leonardozcm <leonardo1997zcm@gmail.com>
15 lines
330 B
YAML
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 }}
|