If preload fails on hot restart, log warning instead of erroring out

pull/7243/head
Priya Wadhwa 2020-03-25 16:43:35 -07:00
parent f4f00bb2eb
commit f52df44fd5
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ func (k *Bootstrapper) UpdateCluster(cfg config.ClusterConfig) error {
}
if err := r.Preload(cfg.KubernetesConfig); err != nil {
return errors.Wrap(err, "preloading")
glog.Infof("prelaoding failed, will try to load cached images: %v", err)
}
if cfg.KubernetesConfig.ShouldLoadCachedImages {