I'm currently using the Python APIs for Kubernetes and I have to:
Retrieve the instance of a custom resource name
FADepl
.Edit the value of that instance.
In the terminal, I would simply list all FADepls
with kubectl get fadepl
and then edit the right one using kubectl edit fadepl <fadepl_name>
. I checked the K8s APIs for Python but I can't find what I need. Is it something I can do with the APIs?
Thank you in advance!