所有人,是否有办法找到与持久卷声明关联的节点。
> kubectl get pvc -n namespace
给了我持久卷声明的列表。但我还需要每个声明关联的节点。即使描述PVC也不能给予节点
kubectl describe pvc pvcname -n namespace
谢谢你,格拉吉
kqqjbcuj1#
- kubectl get volumeattachments | grep <pv name> // to get the volumeattachment name - kubectl describe volumeattachment <volumeattachment name from above command> | grep -i 'node name'
字符串
1条答案
按热度按时间kqqjbcuj1#
字符串