Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for VolumeAttachments (0.24 sec)

  1. cmd/kube-controller-manager/app/core.go

    			controllerContext.InformerFactory.Core().V1().PersistentVolumes(),
    			csiNodeInformer,
    			csiDriverInformer,
    			controllerContext.InformerFactory.Storage().V1().VolumeAttachments(),
    			plugins,
    			GetDynamicPluginProber(controllerContext.ComponentConfig.PersistentVolumeBinderController.VolumeConfiguration),
    			controllerContext.ComponentConfig.AttachDetachController.DisableAttachDetachReconcilerSync,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    		return nil, nil
    	}
    
    	attachID := getAttachmentName(handle, driver, nodeName)
    
    	// search for attachment by VolumeAttachment.Spec.Source.PersistentVolumeName
    	attachment, err := client.StorageV1().VolumeAttachments().Get(context.TODO(), attachID, meta.GetOptions{})
    	if err != nil {
    		return nil, err // This err already has enough context ("VolumeAttachment xyz not found")
    	}
    
    	if attachment == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of VolumeAttachments
      repeated VolumeAttachment items = 2;
    }
    
    // VolumeAttachmentSource represents a volume that should be attached.
    // Right now only PersistenVolumes can be attached via external attacher,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of VolumeAttachments
      repeated VolumeAttachment items = 2;
    }
    
    // VolumeAttachmentSource represents a volume that should be attached.
    // Right now only PersistenVolumes can be attached via external attacher,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// items is the list of VolumeAttachments
    	Items []VolumeAttachment `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // VolumeAttachmentSpec is the specification of a VolumeAttachment request.
    type VolumeAttachmentSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top