mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-06 12:59:51 +00:00
[Engine-1.21] Close agentReady channel only in k3s (#4795)
* Close agentReady channel only in k3s Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> * codespell check Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com>
This commit is contained in:
@@ -174,7 +174,13 @@ func run(app *cli.Context, cfg *cmds.Server, leaderControllers server.CustomCont
|
||||
serverConfig.ControlConfig.DisableScheduler = true
|
||||
serverConfig.ControlConfig.DisableCCM = true
|
||||
|
||||
close(agentReady)
|
||||
// only close the agentReady channel in case of k3s restoration, because k3s does not start
|
||||
// the agent until server returns successfully, unlike rke2's agent which starts in parallel
|
||||
// with the server
|
||||
if serverConfig.ControlConfig.SupervisorPort == serverConfig.ControlConfig.HTTPSPort {
|
||||
close(agentReady)
|
||||
}
|
||||
|
||||
dataDir, err := datadir.LocalHome(cfg.DataDir, false)
|
||||
if err != nil {
|
||||
return err
|
||||
|
||||
Reference in New Issue
Block a user