Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mapsPath (0.1 sec)

  1. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    		if err != nil {
    			return err
    		}
    		if (fi.Mode()&os.ModeDevice == os.ModeDevice) && (fi.Name() == string(podUID)) {
    			klog.V(5).Infof("FindGlobalMapPathFromPod: path %s, mapPath %s", path, mapPath)
    			if res, err := compareBindMountAndSymlinks(path, mapPath); err == nil && res {
    				globalMapPathUUID = path
    			}
    		}
    		return nil
    	})
    	if err != nil {
    		return "", fmt.Errorf("FindGlobalMapPathUUIDFromPod failed: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_unsupported.go

    // FindGlobalMapPathUUIDFromPod finds {pod uuid} bind mount under globalMapPath
    // corresponding to map path symlink, and then return global map path with pod uuid.
    func (v VolumePathHandler) FindGlobalMapPathUUIDFromPod(pluginDir, mapPath string, podUID types.UID) (string, error) {
    	return "", fmt.Errorf("FindGlobalMapPathUUIDFromPod not supported for this build.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
Back to top