Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for attachedVolumes (0.22 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	GenerateDetachVolumeFunc(logger klog.Logger, volumeToDetach AttachedVolume, verifySafeToDetach bool, actualStateOfWorld ActualStateOfWorldAttacherUpdater) (volumetypes.GeneratedOperations, error)
    
    	// Generates the VolumesAreAttached function needed to verify if volume plugins are attached
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	}
    
    	return nil
    }
    
    func waitForVolumeDetach(
    	volumeName v1.UniqueVolumeName,
    	volumeManager kubeletvolume.VolumeManager) error {
    	attachedVolumes := []v1.UniqueVolumeName{}
    	err := retryWithExponentialBackOff(
    		time.Duration(50*time.Millisecond),
    		func() (bool, error) {
    			// Verify volumes detached
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    func (in *AttachedVolume) DeepCopyInto(out *AttachedVolume) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachedVolume.
    func (in *AttachedVolume) DeepCopy() *AttachedVolume {
    	if in == nil {
    		return nil
    	}
    	out := new(AttachedVolume)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *AttachedVolume) DeepCopyInto(out *AttachedVolume) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachedVolume.
    func (in *AttachedVolume) DeepCopy() *AttachedVolume {
    	if in == nil {
    		return nil
    	}
    	out := new(AttachedVolume)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.AttachedVolume": {
          "description": "AttachedVolume describes a volume attached to a node",
          "properties": {
            "devicePath": {
              "description": "DevicePath represents the device path where the volume should be available",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top