Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
I think you might be right, on DOKS, when mounting an NFS volume, it’s actually the node trying to reach the NFS server, not the pod.
So even if DNS works fine inside the pod, the node itself probably can’t reach nfs-server.default.svc.cluster.local over port 2049.
Since the NFS server is running inside the same cluster, I guess the node can’t access it directly through the cluster network. That could explain why the mount fails even though the service name resolves.
One thing I’ve seen is people running the NFS server with hostNetwork: true so it binds to the node’s IP, then the node can talk to it like any local service.
- Bobby