From 7d864b7be81be6ef5682591065ed20934201013b Mon Sep 17 00:00:00 2001 From: Alex Buchanan Date: Thu, 31 Oct 2024 13:20:38 -0700 Subject: [PATCH] remove TODO --- internal/cmd/local/k8s/cluster.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/cmd/local/k8s/cluster.go b/internal/cmd/local/k8s/cluster.go index 7367721..8799f7e 100644 --- a/internal/cmd/local/k8s/cluster.go +++ b/internal/cmd/local/k8s/cluster.go @@ -119,7 +119,6 @@ func (k *kindCluster) Exists(ctx context.Context) bool { // LoadImages pulls images from Docker Hub, and loads them into the kind cluster. // This is a best-effort optimization, which is why it doesn't an error; // it's possible that only some images will be loaded. -// TODO this should probably take a context, and handle cancellation. func (k *kindCluster) LoadImages(ctx context.Context, images []string) { err := k.loadImages(ctx, images) pterm.Debug.Printfln("failed to load images: %s", err)