Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for volumeattachment (0.28 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      //
      // +optional
      optional int64 expirationSeconds = 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
    - 25K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_block.go

    	}
    
    	var attachment *storage.VolumeAttachment
    	if !skip {
    		// Search for attachment by VolumeAttachment.Spec.Source.PersistentVolumeName
    		nodeName := string(m.plugin.host.GetNodeName())
    		attachID := getAttachmentName(csiSource.VolumeHandle, csiSource.Driver, nodeName)
    		attachment, err = m.k8s.StorageV1().VolumeAttachments().Get(context.TODO(), attachID, meta.GetOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    		return true, obj, nil
    	})
    	volumeAttachments = &storagev1.VolumeAttachmentList{}
    	fakeClient.AddReactor("list", "volumeattachments", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		obj := &storagev1.VolumeAttachmentList{}
    		obj.Items = append(obj.Items, volumeAttachments.Items...)
    		return true, obj, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/graph_populator.go

    	g.updateVolumeAttachment(nil, obj)
    }
    
    func (g *graphPopulator) updateVolumeAttachment(oldObj, obj interface{}) {
    	attachment := obj.(*storagev1.VolumeAttachment)
    	if oldObj != nil {
    		// skip add if node name is identical
    		oldAttachment := oldObj.(*storagev1.VolumeAttachment)
    		if oldAttachment.Spec.NodeName == attachment.Spec.NodeName {
    			return
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.19
    // +k8s:prerelease-lifecycle-gen:replacement=storage.k8s.io,v1,VolumeAttachment
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    type VolumeAttachment struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. pkg/apis/storage/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    
    	// Items is the list of VolumeAttachments
    	Items []VolumeAttachment
    }
    
    // The specification of a VolumeAttachment request.
    type VolumeAttachmentSpec struct {
    	// Attacher indicates the name of the volume driver that MUST handle this
    	// request. This is the name returned by GetPluginName().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.13
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    type VolumeAttachment struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1alpha1/register.go

    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    		&VolumeAttributesClass{},
    		&VolumeAttributesClassList{},
    	)
    
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pkg/apis/storage/register.go

    	AddToScheme   = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&StorageClass{},
    		&StorageClassList{},
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    		&CSINode{},
    		&CSINodeList{},
    		&CSIDriver{},
    		&CSIDriverList{},
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    		&VolumeAttributesClass{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&StorageClass{},
    		&StorageClassList{},
    
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    
    		&CSINode{},
    		&CSINodeList{},
    
    		&CSIDriver{},
    		&CSIDriverList{},
    
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 14 19:05:45 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top