Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindGlobalMapPathUUIDFromPod (0.17 sec)

  1. 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)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    	// If the block device was deleted, the path will contain a "(deleted)" suffix
    	path = strings.TrimSpace(path)
    	path = strings.TrimSuffix(path, "(deleted)")
    	return strings.TrimSpace(path)
    }
    
    // FindGlobalMapPathUUIDFromPod finds {pod uuid} bind mount under globalMapPath
    // corresponding to map path symlink, and then return global map path with pod uuid.
    // (See pkg/volume/volume.go for details on a global map path and a pod device map path.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top