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
The plugin creating a volume, that gets mounted at the target path as requested by kubelet. Now the path that the plugin uses for creating the volume lives under the path /csi
// getVolumePath returns the canonical path for emptydirclone volumefuncgetVolumePath(volNamestring) string {
returnfilepath.Join("/csi/data", volName)
}
Although this works, the pattern I've seen is,
A volume separate from the one used for the CSI socket mounted from the host in both the plugin container and the node-driver-registrar container
Goal
Background
Ref: #25 (comment)
node-driver-registrar
container, which is used primarily for the CSI socket/csi
Although this works, the pattern I've seen is,
node-driver-registrar
container/csi-data-dir/
to create all volumes within that path.The text was updated successfully, but these errors were encountered: