Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for csistoragecapacities (0.21 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. pkg/registry/storage/csistoragecapacity/storage/storage_test.go

    	etcdStorage, server := registrytest.NewEtcdStorageForResource(t, storageapi.SchemeGroupVersion.WithResource("csistoragecapacities").GroupResource())
    	restOptions := generic.RESTOptions{
    		StorageConfig:           etcdStorage,
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 1,
    		ResourcePrefix:          "csistoragecapacities",
    	}
    	csiStorageCapacityStorage, err := NewStorage(restOptions)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 03 19:54:14 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

      - apiGroups:
        - storage.k8s.io
        resources:
        - csidrivers
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - storage.k8s.io
        resources:
        - csistoragecapacities
        verbs:
        - get
        - list
        - watch
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2beta1.json

                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                },
                {
                  "resource": "csistoragecapacities",
                  "responseKind": {
                    "group": "",
                    "kind": "CSIStorageCapacity",
                    "version": ""
                  },
                  "scope": "Namespaced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. api/discovery/aggregated_v2.json

                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                },
                {
                  "resource": "csistoragecapacities",
                  "responseKind": {
                    "group": "",
                    "kind": "CSIStorageCapacity",
                    "version": ""
                  },
                  "scope": "Namespaced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top