Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for volumeattachment (0.2 sec)

  1. api/discovery/apis__storage.k8s.io__v1.json

            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "VolumeAttachment",
          "name": "volumeattachments",
          "namespaced": false,
          "singularName": "volumeattachment",
          "storageVersionHash": "tJx/ezt6UDU=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/registry/storage/volumeattachment/strategy.go

    	volumeAttachment := obj.(*storage.VolumeAttachment)
    	volumeAttachment.Status = storage.VolumeAttachmentStatus{}
    }
    
    func (volumeAttachmentStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	volumeAttachment := obj.(*storage.VolumeAttachment)
    
    	errs := validation.ValidateVolumeAttachment(volumeAttachment)
    
    	// tighten up validation of newly created v1 attachments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 06 21:19:19 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher.go

    	klog.V(4).Info(log("probing VolumeAttachment [id=%v]", attachID))
    
    	verifyStatus := func() (bool, error) {
    		volumeAttachment, err := c.plugin.volumeAttachmentLister.Get(attachID)
    		if err != nil {
    			// Ignore "not found" errors in case the VolumeAttachment was just created and hasn't yet made it into the lister.
    			if !apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. pkg/apis/storage/v1alpha1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.VolumeAttachment)(nil), (*storage.VolumeAttachment)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_VolumeAttachment_To_storage_VolumeAttachment(a.(*v1alpha1.VolumeAttachment), b.(*storage.VolumeAttachment), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation.go

    }
    
    // ValidateVolumeAttachment validates a VolumeAttachment. This function is common for v1 and v1beta1 objects,
    func ValidateVolumeAttachment(volumeAttachment *storage.VolumeAttachment) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMeta(&volumeAttachment.ObjectMeta, false, apivalidation.ValidateClassName, field.NewPath("metadata"))
    	allErrs = append(allErrs, validateVolumeAttachmentSpec(&volumeAttachment.Spec, field.NewPath("spec"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // +listType=map
      // +listMapKey=name
      repeated CSIStorageCapacity items = 2;
    }
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    message VolumeAttachment {
      // Standard object metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // items is the list of CSIStorageCapacity objects.
      repeated CSIStorageCapacity items = 2;
    }
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    message VolumeAttachment {
      // Standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"status":   "status represents status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.",
    }
    
    func (VolumeAttachment) SwaggerDoc() map[string]string {
    	return map_VolumeAttachment
    }
    
    var map_VolumeAttachmentList = map[string]string{
    	"":         "VolumeAttachmentList is a collection of VolumeAttachment objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/zz_generated.deepcopy.go

    func (in *VolumeAttachment) DeepCopyInto(out *VolumeAttachment) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeAttachment.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. pkg/apis/storage/v1alpha1/zz_generated.defaults.go

    	scheme.AddTypeDefaultingFunc(&v1alpha1.VolumeAttachment{}, func(obj interface{}) { SetObjectDefaults_VolumeAttachment(obj.(*v1alpha1.VolumeAttachment)) })
    	scheme.AddTypeDefaultingFunc(&v1alpha1.VolumeAttachmentList{}, func(obj interface{}) { SetObjectDefaults_VolumeAttachmentList(obj.(*v1alpha1.VolumeAttachmentList)) })
    	return nil
    }
    
    func SetObjectDefaults_VolumeAttachment(in *v1alpha1.VolumeAttachment) {
    	if in.Spec.Source.InlineVolumeSpec != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top