Debugging NFS Mount

I currently have an NFS persistant volume that I’m trying to mount to a workload.

As soon as I add it to a workload, I get stuck i with an unavailable pod that is stuck “ContainerCreating”.

Any tips for getting to the log info for either the mount or the workload?

May be linked to this issue : https://github.com/rancher/charts/issues/7

As for debug output, you can get it by opening the kubectl console, and running kubectl --namespace=<pod namespace> describe pod <pod name>.

Thank you @Dremor!

I was indeed getting an nfs mount error during creation.

After a bunch of pondering and debugging, it turns out I needed to install nfs-common on the node box. As soon as I did that, everything started working!

1 Like