Always set pod-infra-container-image to protect it from image GC

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
This commit is contained in:
Brad Davidson 2022-03-10 17:01:53 -08:00 committed by Brad Davidson
parent 0710a7198a
commit 360f18d1cf
2 changed files with 4 additions and 2 deletions

View File

@ -96,7 +96,8 @@ func kubeletArgs(cfg *config.Agent) map[string]string {
if cfg.RuntimeSocket != "" {
argsMap["serialize-image-pulls"] = "false"
checkRuntimeEndpoint(cfg, argsMap)
} else if cfg.PauseImage != "" {
}
if cfg.PauseImage != "" {
argsMap["pod-infra-container-image"] = cfg.PauseImage
}
if cfg.ImageServiceSocket != "" {

View File

@ -88,7 +88,8 @@ func kubeletArgs(cfg *config.Agent) map[string]string {
argsMap["container-runtime"] = "remote"
argsMap["serialize-image-pulls"] = "false"
checkRuntimeEndpoint(cfg, argsMap)
} else if cfg.PauseImage != "" {
}
if cfg.PauseImage != "" {
argsMap["pod-infra-container-image"] = cfg.PauseImage
}
if cfg.ListenAddress != "" {