From 23a8c35ba42c51c0333c1c9aa30a99122c409bf2 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Tue, 16 Jul 2024 18:36:49 -0500 Subject: [PATCH] update isImageCorrectArch comment --- pkg/minikube/download/image.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/minikube/download/image.go b/pkg/minikube/download/image.go index 3c4fc41aaf50..b099e71834f4 100644 --- a/pkg/minikube/download/image.go +++ b/pkg/minikube/download/image.go @@ -99,7 +99,8 @@ func ImageExistsInDaemon(img string) bool { return true } -// isImageCorrectArch is needed to resolve +// isImageCorrectArch returns true if the image arch is the same as the binary +// arch. This is needed to resolve // https://github.com/kubernetes/minikube/pull/19205 func isImageCorrectArch(img string) (bool, error) { ref, err := name.ParseReference(img)