Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unboundClaimsDelayBinding (0.28 sec)

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

    				podVolumeClaims: &PodVolumeClaims{
    					boundClaims: []*v1.PersistentVolumeClaim{
    						makePVC("pvc-a", waitSC.Name).withBoundPV("pv-a").PersistentVolumeClaim,
    					},
    					unboundClaimsDelayBinding:  []*v1.PersistentVolumeClaim{},
    					unboundVolumesDelayBinding: map[string][]*v1.PersistentVolume{},
    				},
    				podVolumesByNode: map[string]*PodVolumes{},
    			},
    			wantFilterStatus: []*framework.Status{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    }
    
    type PodVolumeClaims struct {
    	// boundClaims are the pod's bound PVCs.
    	boundClaims []*v1.PersistentVolumeClaim
    	// 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) .
    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/framework/plugins/volumebinding/volume_binding.go

    	state.Write(stateKey, &stateData{
    		podVolumesByNode: make(map[string]*PodVolumes),
    		podVolumeClaims: &PodVolumeClaims{
    			boundClaims:                podVolumeClaims.boundClaims,
    			unboundClaimsDelayBinding:  podVolumeClaims.unboundClaimsDelayBinding,
    			unboundVolumesDelayBinding: podVolumeClaims.unboundVolumesDelayBinding,
    		},
    	})
    	return result, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top