以下是.yml
在 Kubernetes 集群上创建 PersistentVolume 的文件示例:
apiVersion: v1
kind: PersistentVolume
metadata:
name: task-pv-volume
namespace: prisma
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: xxGi
accessModes:
- ReadWriteOnce
hostPath:
path: "/data"
存储容量能否超过集群中磁盘最小的节点上的可用存储容量?或者最大值是集群节点上可用磁盘的总和?