Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unboundClaimsImmediate (0.36 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/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