From ee48b336725bd9e80597fa621271a9884faf8480 Mon Sep 17 00:00:00 2001 From: Roman Dodin Date: Tue, 6 Jul 2021 18:47:03 +0200 Subject: [PATCH] removed images fetch for host kind --- nodes/host/host.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nodes/host/host.go b/nodes/host/host.go index 942572c54..dfcb423c6 100644 --- a/nodes/host/host.go +++ b/nodes/host/host.go @@ -39,11 +39,7 @@ func (s *host) PostDeploy(ctx context.Context, ns map[string]nodes.Node) error { return nil } -func (s *host) GetImages() map[string]string { - return map[string]string{ - nodes.ImageKey: s.cfg.Image, - } -} +func (s *host) GetImages() map[string]string { return map[string]string{} } func (s *host) WithMgmtNet(*types.MgmtNet) {} func (s *host) WithRuntime(r runtime.ContainerRuntime) { s.runtime = r }