-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Volume plugin dir #1
Comments
The mount point is passed as the 1st parameter when Kubernetes calls |
Install instruction requires to know where to put cifs file. mkdir -p will create that folder, but cifs will not work. |
Ah, I confused the volume plugin dir and the mount point. Thanks a lot for pointing this out and sorry for the confusion. I updated the README. |
Basically volume plugin dir is not static, it depend on system itself. Some vendors may choose to change the directory due to various reasons. For example, GKE uses
/home/kubernetes/flexvolume
, and RKE uses/var/lib/kubelet/volumeplugins
User can find the correct directory by running
ps aux|grep kubelet
on the host and check the--volume-plugin-dir parameter
. If there is none, the default/usr/libexec/kubernetes/kubelet-plugins/volume/exec/
will be used.This is mainly FYI.
The text was updated successfully, but these errors were encountered: