Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for csistoragecapacity (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top