mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2024-11-21 01:16:33 +08:00
34 lines
613 B
YAML
Executable File
34 lines
613 B
YAML
Executable File
|
|
|
|
# 模型训练
|
|
---
|
|
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: katib-kubeflow-user-workspace
|
|
labels:
|
|
katib-pvname: katib-kubeflow-user-workspace
|
|
spec:
|
|
capacity:
|
|
storage: 500Gi
|
|
accessModes:
|
|
- ReadWriteMany
|
|
hostPath:
|
|
path: /data/k8s/kubeflow/pipeline/workspace
|
|
persistentVolumeReclaimPolicy: Retain
|
|
---
|
|
kind: PersistentVolumeClaim
|
|
apiVersion: v1
|
|
metadata:
|
|
name: kubeflow-user-workspace
|
|
namespace: katib
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 500Gi
|
|
selector:
|
|
matchLabels:
|
|
katib-pvname: katib-kubeflow-user-workspace
|