You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered a mounting issue while running MicroK8s as my Kubernetes cluster node with CVMFS drivers. The nodeplugin pod was incorrectly attempting to mount volumes using /var/lib/kubelet/pods instead of the correct kubelet directory specified by MicroK8s. As a result, the volumes were not mounting properly to the pod.
The root cause was traced to line 79 in the nodeplugin-daemonset.yaml file (deployments/helm/cvmfs-csi/templates). The current configuration uses an incorrect path, leading to mounting failures. Modifying this line to reference the proper kubelet directory fixed the issue, allowing the volumes to mount correctly.
To prevent others from encountering the same problem, I recommend updating the configuration to:
Hi,
I encountered a mounting issue while running MicroK8s as my Kubernetes cluster node with CVMFS drivers. The nodeplugin pod was incorrectly attempting to mount volumes using /var/lib/kubelet/pods instead of the correct kubelet directory specified by MicroK8s. As a result, the volumes were not mounting properly to the pod.
The root cause was traced to line 79 in the
nodeplugin-daemonset.yaml
file (deployments/helm/cvmfs-csi/templates
). The current configuration uses an incorrect path, leading to mounting failures. Modifying this line to reference the proper kubelet directory fixed the issue, allowing the volumes to mount correctly.To prevent others from encountering the same problem, I recommend updating the configuration to:
The text was updated successfully, but these errors were encountered: