Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VerifyControllerAttachedVolume (0.45 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    			return
    		}
    		// Volume is not attached (or doesn't implement attacher), kubelet attach is disabled, wait
    		// for controller to finish attaching volume.
    		klog.V(5).InfoS(volumeToMount.GenerateMsgDetailed("Starting operationExecutor.VerifyControllerAttachedVolume", ""), "pod", klog.KObj(volumeToMount.Pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_executor.go

    	// It then updates the actual state of the world to reflect that.
    	UnmountDevice(deviceToDetach AttachedVolume, actualStateOfWorld ActualStateOfWorldMounterUpdater, hostutil hostutil.HostUtils) error
    
    	// VerifyControllerAttachedVolume checks if the specified volume is present
    	// in the specified nodes AttachedVolumes Status field. It uses kubeClient
    	// to fetch the node object.
    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/volume/util/operationexecutor/operation_executor_test.go

    			VolumeName: v1.UniqueVolumeName(pdName),
    		}
    		logger, _ := ktesting.NewTestContext(t)
    		oe.VerifyControllerAttachedVolume(logger, volumesToMount[i], types.NodeName("node-name"), nil /* actualStateOfWorldMounterUpdater */)
    	}
    
    	// Assert
    	if !isOperationRunSerially(ch, quit) {
    		t.Fatalf("VerifyControllerAttachedVolume should not run concurrently")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    }
    
    var _ OperationGenerator = &operationGenerator{}
    
    type operationGenerator struct {
    	// Used to fetch objects from the API server like Node in the
    	// VerifyControllerAttachedVolume operation.
    	kubeClient clientset.Interface
    
    	// volumePluginMgr is the volume plugin manager used to create volume
    	// plugin objects.
    	volumePluginMgr *volume.VolumePluginMgr
    
    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