Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CacheComparer ¶
type CacheComparer struct { NodeLister corelisters.NodeLister PodLister corelisters.PodLister Cache godelcache.BinderCache PodQueue godelqueue.BinderQueue }
CacheComparer is an implementation of the Scheduler's cache comparer.
func (*CacheComparer) Compare ¶
func (c *CacheComparer) Compare() error
Compare compares the nodes and pods of NodeLister with Cache.Snapshot.
func (*CacheComparer) CompareNodes ¶
func (c *CacheComparer) CompareNodes(nodes []*v1.Node, nodeinfos map[string]api.NodeInfo) (missed, redundant []string)
CompareNodes compares actual nodes with cached nodes.
func (*CacheComparer) ComparePods ¶
func (c *CacheComparer) ComparePods(pods, waitingPods []*v1.Pod, nodeinfos map[string]api.NodeInfo) (missed, redundant []string)
ComparePods compares actual pods with cached pods.
type CacheDebugger ¶
type CacheDebugger struct { Comparer CacheComparer Dumper CacheDumper }
CacheDebugger provides ways to check and write cache information for debugging. From https://github.com/kubernetes/kubernetes/pull/70500 The binder cache comparer and dumper are triggered together when the binder receives a SIGUSR2: kill -SIGUSR2 <the binder PID>
func New ¶
func New( nodeLister corelisters.NodeLister, podLister corelisters.PodLister, cache godelcache.BinderCache, podQueue godelqueue.BinderQueue, ) *CacheDebugger
New creates a CacheDebugger.
func (*CacheDebugger) ListenForSignal ¶
func (d *CacheDebugger) ListenForSignal(stopCh <-chan struct{})
ListenForSignal starts a goroutine that will trigger the CacheDebugger's behavior when the process receives SIGINT (Windows) or SIGUSER2 (non-Windows).
type CacheDumper ¶
type CacheDumper struct {
// contains filtered or unexported fields
}
func (*CacheDumper) DumpAll ¶
func (d *CacheDumper) DumpAll()
DumpAll writes cached nodes and binder queue information to the binder logs.