I'm trying to get details of persistentvolumeclaim such as "Used By" which you can get when you run kubectl describe pvc [your-pvc-name] but I'm trying to get that using python k8s client. I'm able to get YAML of the pvc through readNamespacedPersistentVolumeClaim() function but it doesn't contain the "Used By".
How to use python k8s client to get details of a persistentvolumeclaim such as "Used By".