Kubernetes 调度器是如何工作的
复制// Run begins watching and scheduling. It waits for cache to be synced, then starts a goroutine and returns immediately.func (sched *Scheduler)Run(){if!sched.config.WaitForCacheSync(){return} go wait.Until(sched.scheduleOne,0, sched.config.StopEverything)1.2.3.4.5.6.7.8.
THE END