Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for VolumeNotMounted (0.3 sec)

  1. pkg/volume/testing/testing.go

    	AlwaysFailNodeExpansion = "always-fail-node-expansion"
    
    	deviceNotMounted     = "deviceNotMounted"
    	deviceMountUncertain = "deviceMountUncertain"
    	deviceMounted        = "deviceMounted"
    
    	volumeNotMounted     = "volumeNotMounted"
    	volumeMountUncertain = "volumeMountUncertain"
    	volumeMounted        = "volumeMounted"
    
    	FailNewMounter = "fail-new-mounter"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_executor.go

    	// VolumeMountUncertain means volume may or may not be mounted in pods' local path
    	VolumeMountUncertain VolumeMountState = "VolumeMountUncertain"
    
    	// VolumeNotMounted means volume has not be mounted in pod's local path
    	VolumeNotMounted VolumeMountState = "VolumeNotMounted"
    )
    
    type MountPreConditionFailed struct {
    	msg string
    }
    
    func (err *MountPreConditionFailed) Error() string {
    	return err.msg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	asw.RLock()
    	defer asw.RUnlock()
    
    	volumeObj, volumeExists := asw.attachedVolumes[volumeName]
    	if !volumeExists {
    		return operationexecutor.VolumeNotMounted
    	}
    
    	podObj, podExists := volumeObj.mountedPods[podName]
    	if !podExists {
    		return operationexecutor.VolumeNotMounted
    	}
    	return podObj.volumeMountStateForPod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			volumeState:            operationexecutor.VolumeNotMounted,
    			unmountDeviceCallCount: 1,
    			unmountVolumeCount:     0,
    			volumeName:             volumetesting.FailOnSetupVolumeName,
    		},
    		{
    			name:                   "timeout followed by failed operation should result in non-mounted volume",
    			volumeState:            operationexecutor.VolumeNotMounted,
    			unmountDeviceCallCount: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    		return
    
    	}
    
    	if volumetypes.IsUncertainProgressError(mountError) &&
    		actualStateOfWorld.GetVolumeMountState(volumeToMount.VolumeName, markOpts.PodName) == VolumeNotMounted {
    		t := actualStateOfWorld.MarkVolumeMountAsUncertain(markOpts)
    		if t != nil {
    			klog.Errorf(volumeToMount.GenerateErrorDetailed("MountVolume.MarkVolumeMountAsUncertain failed", t).Error())
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top