Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for VolumeAttachments (0.89 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",
    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/storage/storage.go

    )
    
    // 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
    }
    
    // NewStorage returns a RESTStorage object that will work against VolumeAttachments
    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/strategy_test.go

    func TestVolumeAttachmentStrategy(t *testing.T) {
    	ctx := genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{
    		APIGroup:   "storage.k8s.io",
    		APIVersion: "v1",
    		Resource:   "volumeattachments",
    	})
    	if Strategy.NamespaceScoped() {
    		t.Errorf("VolumeAttachment must not be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("VolumeAttachment should not allow create on update")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. pkg/registry/storage/rest/storage_storage.go

    	if resource := "storageclasses"; apiResourceConfigSource.ResourceEnabled(storageapiv1.SchemeGroupVersion.WithResource(resource)) {
    		storage[resource] = storageClassStorage
    	}
    
    	// volumeattachments
    	if resource := "volumeattachments"; apiResourceConfigSource.ResourceEnabled(storageapiv1.SchemeGroupVersion.WithResource(resource)) {
    		storage[resource] = volumeAttachmentStorage.VolumeAttachment
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 12:51:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pkg/controlplane/storageversionhashdata/data.go

    	"storage.k8s.io/v1/storageclasses":                                  "K+m6uJwbjGY=",
    	"storage.k8s.io/v1/csistoragecapacities":                            "xeVl+2Ly1kE=",
    	"storage.k8s.io/v1/volumeattachments":                               "tJx/ezt6UDU=",
    	"apps/v1/controllerrevisions":                                       "85nkx63pcBU=",
    	"apps/v1/daemonsets":                                                "dd7pWHUlMKQ=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/registry/storage/volumeattachment/storage/storage_test.go

    	restOptions := generic.RESTOptions{
    		StorageConfig:           etcdStorage,
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 1,
    		ResourcePrefix:          "volumeattachments",
    	}
    	volumeAttachmentStorage, err := NewStorage(restOptions)
    	if err != nil {
    		t.Fatalf("unexpected error from REST storage: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/authorizer/config.go

    				config.VersionedInformerFactory.Core().V1().Pods(),
    				config.VersionedInformerFactory.Core().V1().PersistentVolumes(),
    				config.VersionedInformerFactory.Storage().V1().VolumeAttachments(),
    				slices, // Nil check in AddGraphEventHandlers can be removed when always creating this.
    			)
    			r.nodeAuthorizer = node.NewAuthorizer(graph, nodeidentifier.NewDefaultNodeIdentifier(), bootstrappolicy.NodeRules())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1alpha1/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top