From 9ab1035852ef10df32bdcd89740b7f6eb112fe63 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Tue, 17 Apr 2018 23:04:46 -0700 Subject: [PATCH] Always try to pull --- cluster/cluster.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/cluster/cluster.go b/cluster/cluster.go index e3b386fd..a097b63d 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -312,9 +312,6 @@ func (c *Cluster) PrePullK8sImages(ctx context.Context) error { var errgrp errgroup.Group hosts := hosts.GetUniqueHostList(c.EtcdHosts, c.ControlPlaneHosts, c.WorkerHosts) for _, host := range hosts { - if !host.UpdateWorker { - continue - } runHost := host errgrp.Go(func() error { return docker.UseLocalOrPull(ctx, runHost.DClient, runHost.Address, c.SystemImages.Kubernetes, "pre-deploy", c.PrivateRegistriesMap)