Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for volumeattachmentstore (0.49 sec)

  1. pkg/registry/storage/rest/storage_storage.go

    	storageClassStorage, err := storageclassstore.NewREST(restOptionsGetter)
    	if err != nil {
    		return nil, err
    	}
    	volumeAttachmentStorage, err := volumeattachmentstore.NewStorage(restOptionsGetter)
    	if err != nil {
    		return nil, err
    	}
    
    	storage := map[string]rest.Storage{}
    
    	// storageclasses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 12:51:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. pkg/registry/storage/volumeattachment/storage/storage.go

    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	"k8s.io/kubernetes/pkg/registry/storage/volumeattachment"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // VolumeAttachmentStorage includes storage for VolumeAttachments and all subresources
    type VolumeAttachmentStorage struct {
    	VolumeAttachment *REST
    	Status           *StatusREST
    }
    
    // REST object that will work for VolumeAttachments
    type REST struct {
    	*genericregistry.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/registry/storage/volumeattachment/storage/storage_test.go

    		DeleteCollectionWorkers: 1,
    		ResourcePrefix:          "volumeattachments",
    	}
    	volumeAttachmentStorage, err := NewStorage(restOptions)
    	if err != nil {
    		t.Fatalf("unexpected error from REST storage: %v", err)
    	}
    	return volumeAttachmentStorage.VolumeAttachment, volumeAttachmentStorage.Status, server
    }
    
    func validNewVolumeAttachment(name string) *storageapi.VolumeAttachment {
    	pvName := "foo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top