Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unboundClaimsImmediate (0.37 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	// unboundClaimsDelayBinding are the pod's unbound with delayed binding (including provisioning) PVCs.
    	unboundClaimsDelayBinding []*v1.PersistentVolumeClaim
    	// unboundClaimsImmediate are the pod's unbound with immediate binding PVCs (i.e., supposed to be bound already) .
    	unboundClaimsImmediate []*v1.PersistentVolumeClaim
    	// unboundVolumesDelayBinding are PVs that belong to storage classes of the pod's unbound PVCs with delayed binding.
    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/framework/plugins/volumebinding/volume_binding.go

    		return nil, framework.NewStatus(framework.Skip)
    	}
    	podVolumeClaims, err := pl.Binder.GetPodVolumeClaims(logger, pod)
    	if err != nil {
    		return nil, framework.AsStatus(err)
    	}
    	if len(podVolumeClaims.unboundClaimsImmediate) > 0 {
    		// Return UnschedulableAndUnresolvable error if immediate claims are
    		// not bound. Pod will be moved to active/backoff queues once these
    		// claims are bound by PV controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    					unboundClaimsDelayBinding: []*v1.PersistentVolumeClaim{
    						makePVC("pvc-a", waitSC.Name).withRequestStorage(resource.MustParse("50Gi")).PersistentVolumeClaim,
    					},
    					unboundClaimsImmediate: nil,
    					unboundVolumesDelayBinding: map[string][]*v1.PersistentVolume{
    						waitSC.Name: {
    							makePV("pv-a-0", waitSC.Name).
    								withPhase(v1.VolumeAvailable).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	podVolumeClaims, err := binder.GetPodVolumeClaims(logger, pod)
    	if err != nil {
    		return nil, nil, err
    	}
    	if len(podVolumeClaims.unboundClaimsImmediate) > 0 {
    		return nil, nil, fmt.Errorf("pod has unbound immediate PersistentVolumeClaims")
    	}
    	return binder.FindPodVolumes(logger, pod, podVolumeClaims, node)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top