kubernetes 确定持久卷声明的节点

6vl6ewon  于 2023-11-17  发布在  Kubernetes
关注(0)|答案(1)|浏览(114)

所有人,
是否有办法找到与持久卷声明关联的节点。

> kubectl get pvc -n namespace

给了我持久卷声明的列表。但我还需要每个声明关联的节点。
即使描述PVC也不能给予节点

kubectl describe pvc pvcname -n namespace

谢谢你,
格拉吉

kqqjbcuj

kqqjbcuj1#

  • 每当POD使用PVC时,Kubernetes都会创建一个名为volumeattachment的对象,其中包含PVC连接的节点信息。
- kubectl get volumeattachments | grep <pv name> // to get the volumeattachment name
   - kubectl describe volumeattachment <volumeattachment name from above command> | grep -i 'node name'

字符串

相关问题