Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for csistoragecapacities (0.2 sec)

  1. pkg/registry/storage/csistoragecapacity/storage/storage.go

    		DefaultQualifiedResource:  storageapi.Resource("csistoragecapacities"),
    		SingularQualifiedResource: storageapi.Resource("csistoragecapacity"),
    
    		TableConvertor: rest.NewDefaultTableConvertor(storageapi.Resource("csistoragecapacities")),
    
    		CreateStrategy: csistoragecapacity.Strategy,
    		UpdateStrategy: csistoragecapacity.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. pkg/registry/storage/csistoragecapacity/strategy_test.go

    	ctx := genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{
    		APIGroup:   "storage.k8s.io",
    		APIVersion: "v1alphav1",
    		Resource:   "csistoragecapacities",
    	})
    	if !Strategy.NamespaceScoped() {
    		t.Errorf("CSIStorageCapacity must be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("CSIStorageCapacity 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
    - 5.1K bytes
    - Viewed (0)
  3. pkg/registry/storage/rest/storage_storage.go

    		csiDriverStorage, err := csidriverstore.NewStorage(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = csiDriverStorage.CSIDriver
    	}
    
    	// register csistoragecapacities
    	if resource := "csistoragecapacities"; apiResourceConfigSource.ResourceEnabled(storageapiv1.SchemeGroupVersion.WithResource(resource)) {
    		csiStorageStorage, err := csistoragecapacitystore.NewStorage(restOptionsGetter)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 12:51:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. api/discovery/apis__storage.k8s.io__v1.json

            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "CSIStorageCapacity",
          "name": "csistoragecapacities",
          "namespaced": true,
          "singularName": "csistoragecapacity",
          "storageVersionHash": "xeVl+2Ly1kE=",
          "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)
  5. pkg/kubeapiserver/default_storage_factory_builder.go

    		// version still needs to be supported for one release.
    		//
    		// Example from Kubernetes 1.24 where csistoragecapacities had just
    		// graduated to GA:
    		//
    		// TODO (https://github.com/kubernetes/kubernetes/issues/108451): remove the override in 1.25.
    		// apisstorage.Resource("csistoragecapacities").WithVersion("v1beta1"),
    		networking.Resource("ipaddresses").WithVersion("v1alpha1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/controlplane/storageversionhashdata/data.go

    	"storage.k8s.io/v1/csinodes":                                        "Pe62DkZtjuo=",
    	"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=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top