Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for STAGE_UNSTAGE_VOLUME (0.13 sec)

  1. pkg/volume/csi/csi_block.go

    	// Check whether "STAGE_UNSTAGE_VOLUME" is set
    	stageUnstageSet, err := csi.NodeSupportsStageUnstage(ctx)
    	if err != nil {
    		return "", errors.New(log("blockMapper.stageVolumeForBlock failed to check STAGE_UNSTAGE_VOLUME capability: %v", err))
    	}
    	if !stageUnstageSet {
    		klog.Infof(log("blockMapper.stageVolumeForBlock STAGE_UNSTAGE_VOLUME capability not set. Skipping MountDevice..."))
    		return "", nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher.go

    	defer cancel()
    	// Check whether "STAGE_UNSTAGE_VOLUME" is set
    	stageUnstageSet, err := csi.NodeSupportsStageUnstage(ctx)
    	if err != nil {
    		return errors.New(log("attacher.UnmountDevice failed to check whether STAGE_UNSTAGE_VOLUME set: %v", err))
    	}
    	if !stageUnstageSet {
    		klog.Infof(log("attacher.UnmountDevice STAGE_UNSTAGE_VOLUME capability not set. Skipping UnmountDevice..."))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter.go

    		}
    
    		mountOptions = c.spec.PersistentVolume.Spec.MountOptions
    
    		// Check for STAGE_UNSTAGE_VOLUME set and populate deviceMountPath if so
    		stageUnstageSet, err := csi.NodeSupportsStageUnstage(ctx)
    		if err != nil {
    			return errors.New(log("mounter.SetUpAt failed to check for STAGE_UNSTAGE_VOLUME capability: %v", err))
    		}
    
    		if stageUnstageSet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
Back to top