Files
qiming/qiming-rcoder/k8s/manifests/base/storage/juicefs-pvc.yaml
2026-06-01 13:54:52 +08:00

20 lines
598 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ============================================================
# RCoder JuiceFS PVC
# 替代原来的 NFS PVC
# ============================================================
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: rcoder-workspace
namespace: nuwax-rcoder
labels:
app: rcoder
spec:
# ReadWriteMany: 支持 K8s 多节点同时读写 (JuiceFS 特性)
accessModes: ["ReadWriteMany"]
# storageClassName 由各环境 overlay 覆盖dev: juicefs-sc-dev, prod: juicefs-sc-prod
storageClassName: juicefs-sc-placeholder
resources:
requests:
storage: 50Gi