Skip to content

Commit d0d47ff

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 524347e commit d0d47ff

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
@@ -191,7 +191,7 @@ func beginDownloadKicBaseImage(g *errgroup.Group, cc *config.ClusterConfig, down
191191
// that he should at least get access to github
192192
// print essential warnings
193193
out.WarningT("minikube cannot pull kicbase image from any docker registry, and is trying to download kicbase tarball from github release page via HTTP.")
194-
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:")
194+
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:")
195195
envs := []string{"HTTP_PROXY", "HTTPS_PROXY", "http_proxy", "https_proxy", "ALL_PROXY", "NO_PROXY"}
196196
for _, env := range envs {
197197
if v := os.Getenv(env); v != "" {

0 commit comments

Comments
 (0)