From 15088526cd6b145a64716aab73937718911a960e Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Thu, 4 Jun 2020 11:05:52 -0700 Subject: [PATCH] clean up comments --- pkg/drivers/kic/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/drivers/kic/types.go b/pkg/drivers/kic/types.go index 174ac1738..5d189885a 100644 --- a/pkg/drivers/kic/types.go +++ b/pkg/drivers/kic/types.go @@ -38,11 +38,11 @@ var ( // FallbackImages are backup base images in case gcr isn't available FallbackImages = []string{ - // BaseImageFallBack1 the fall back of BaseImage in case gcr.io is not available. stored in docker hub + // the fallback of BaseImage in case gcr.io is not available. stored in docker hub // same image is push to https://github.com/kicbase/stable fmt.Sprintf("kicbase/stable:%s@sha256:%s", Version, baseImageSHA), - // BaseImageFallBack2 the fall back of BaseImage in case gcr.io is not available. stored in github packages https://github.com/kubernetes/minikube/packages/206071 + // the fallback of BaseImage in case gcr.io is not available. stored in github packages https://github.com/kubernetes/minikube/packages/206071 // github packages docker does _NOT_ support pulling by sha as mentioned in the docs: // https://help.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages fmt.Sprintf("docker.pkg.github.com/kubernetes/minikube/kicbase:%s", Version), -- GitLab