Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for csistoragecapacity (0.26 sec)

  1. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

    driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	logger.V(4).Info("Node has no accessible CSIStorageCapacity with enough capacity for PVC",
    		"node", klog.KObj(node), "PVC", klog.KObj(claim), "size", sizeInBytes, "storageClass", klog.KObj(storageClass))
    	return false, nil
    }
    
    func capacitySufficient(capacity *storagev1.CSIStorageCapacity, sizeInBytes int64) bool {
    	limit := capacity.Capacity
    	if capacity.MaximumVolumeSize != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/scheduler/eventhandlers.go

    			); err != nil {
    				return err
    			}
    			handlers = append(handlers, handlerRegistration)
    		case framework.CSIStorageCapacity:
    			if handlerRegistration, err = informerFactory.Storage().V1().CSIStorageCapacities().Informer().AddEventHandler(
    				buildEvtResHandler(at, framework.CSIStorageCapacity, "CSIStorageCapacity"),
    			); err != nil {
    				return err
    			}
    			handlers = append(handlers, handlerRegistration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2.json

                  "resource": "csistoragecapacities",
                  "responseKind": {
                    "group": "",
                    "kind": "CSIStorageCapacity",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "singularResource": "csistoragecapacity",
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. api/discovery/aggregated_v2beta1.json

                  "resource": "csistoragecapacities",
                  "responseKind": {
                    "group": "",
                    "kind": "CSIStorageCapacity",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "singularResource": "csistoragecapacity",
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		// When CSIStorageCapacity is enabled, pods may become schedulable
    		// on CSI driver & storage capacity changes.
    		{Event: framework.ClusterEvent{Resource: framework.CSIDriver, ActionType: framework.Add | framework.Update}},
    		{Event: framework.ClusterEvent{Resource: framework.CSIStorageCapacity, ActionType: framework.Add | framework.Update}},
    	}
    	return events
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pkg/scheduler/eventhandlers_test.go

    			gvkMap: map[framework.GVK]framework.ActionType{
    				"Pod":                               framework.Add | framework.Delete,
    				"PersistentVolume":                  framework.Delete,
    				"storage.k8s.io/CSIStorageCapacity": framework.Update,
    			},
    			expectStaticInformers: map[reflect.Type]bool{
    				reflect.TypeOf(&v1.Pod{}):                       true,
    				reflect.TypeOf(&v1.Node{}):                      true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. pkg/scheduler/scheduler_test.go

    				},
    				{Resource: framework.CSIDriver, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.CSIStorageCapacity, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.PersistentVolume, ActionType: framework.All}: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    	PersistentVolumeClaim   GVK = "PersistentVolumeClaim"
    	CSINode                 GVK = "storage.k8s.io/CSINode"
    	CSIDriver               GVK = "storage.k8s.io/CSIDriver"
    	CSIStorageCapacity      GVK = "storage.k8s.io/CSIStorageCapacity"
    	StorageClass            GVK = "storage.k8s.io/StorageClass"
    	PodSchedulingContext    GVK = "PodSchedulingContext"
    	ResourceClaim           GVK = "ResourceClaim"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "StorageClassName", Type: "string", Description: storagev1.CSIStorageCapacity{}.SwaggerDoc()["storageClassName"]},
    		{Name: "Capacity", Type: "string", Description: storagev1.CSIStorageCapacity{}.SwaggerDoc()["capacity"]},
    	}
    	_ = h.TableHandler(csiStorageCapacityColumnDefinitions, printCSIStorageCapacity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top