Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HavePodsWithAffinityList (0.52 sec)

  1. pkg/scheduler/internal/cache/snapshot.go

    // List returns the list of nodes in the snapshot.
    func (s *Snapshot) List() ([]*framework.NodeInfo, error) {
    	return s.nodeInfoList, nil
    }
    
    // HavePodsWithAffinityList returns the list of nodes with at least one pod with inter-pod affinity
    func (s *Snapshot) HavePodsWithAffinityList() ([]*framework.NodeInfo, error) {
    	return s.havePodsWithAffinityNodeInfoList, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/framework/fake_listers.go

    // List lists all nodes.
    func (nodes NodeInfoLister) List() ([]*framework.NodeInfo, error) {
    	return nodes, nil
    }
    
    // HavePodsWithAffinityList is supposed to list nodes with at least one pod with affinity. For the fake lister
    // we just return everything.
    func (nodes NodeInfoLister) HavePodsWithAffinityList() ([]*framework.NodeInfo, error) {
    	return nodes, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    		if err != nil {
    			return framework.AsStatus(fmt.Errorf("failed to get all nodes from shared lister: %w", err))
    		}
    	} else {
    		allNodes, err = pl.sharedLister.NodeInfos().HavePodsWithAffinityList()
    		if err != nil {
    			return framework.AsStatus(fmt.Errorf("failed to get pods with affinity list: %w", err))
    		}
    	}
    
    	state := &preScoreState{
    		topologyScore: make(map[string]map[string]int64),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top