我在GCP k8s集群中创建了一个持久卷
kind: PersistentVolume
apiVersion: v1
metadata:
name: test
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/xyz"
我想了解“ / mnt / xyz”的路径来自何处?我已经检查了群集节点,找不到路径“ / mnt / xyz”。
谁能给我启发。
提前致谢。
答案 0 :(得分:2)
有人可以启发我吗?
您可以在the official documentation中找到有关“ hostPath”的详细说明。对于一些快速提示:
在这种情况下,您必须在每个节点上创建/ mnt / xyz,启动pod,检查哪个节点pod开始,并观察pod使用该特定节点上的/ mnt / xyz。现在,一旦您重新启动Pod并将其重新安排到另一个节点,您将看到/ mnt / xyz的先前节点状态在第一个pod停止运行的那一刻被冻结,并且在新分配的节点上它被重新初始化为初始状态并开始使用