Skip to content

Commit 9c2833f

Browse files
committed
kicbase: fix warning message
This fixes an obvious mis-wording in a warning message. Signed-off-by: Michael Adam <[email protected]>
1 parent 00018e5 commit 9c2833f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/minikube/node/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func beginDownloadKicBaseImage(g *errgroup.Group, cc *config.ClusterConfig, down
188188
// that he should at least get access to github
189189
// print essential warnings
190190
out.WarningT("minikube cannot pull kicbase image from any docker registry, and is trying to download kicbase tarball from github release page via HTTP.")
191-
out.WarningT("It's very likely that you have an internet issue. Please ensure that you can access the internet at least via HTTP, directly or with proxy. Currently your proxy configure is:")
191+
out.WarningT("It's very likely that you have an internet issue. Please ensure that you can access the internet at least via HTTP, directly or with proxy. Currently your proxy configuration is:")
192192
envs := []string{"HTTP_PROXY", "HTTPS_PROXY", "http_proxy", "https_proxy", "ALL_PROXY", "NO_PROXY"}
193193
for _, env := range envs {
194194
if v := os.Getenv(env); v != "" {

0 commit comments

Comments
 (0)