You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if we reach here, that means the user cannot have access to any docker registry
249
+
// this means the user is very likely to have a network issue
250
+
// downloading from github via http is the last resort, and we should remind the user
251
+
// that he should at least get access to github
252
+
// print essential warnings
253
+
out.WarningT("minikube cannot pull kicbase image from any docker registry, and is trying to download kicbase tarball from github release page via HTTP.")
254
+
out.Ln("The url to the tarball is %s", downloadUrl)
255
+
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:")
Copy file name to clipboardExpand all lines: pkg/minikube/node/cache.go
+20-3
Original file line number
Diff line number
Diff line change
@@ -133,12 +133,13 @@ func beginDownloadKicBaseImage(g *errgroup.Group, cc *config.ClusterConfig, down
133
133
iffinalImg!="" {
134
134
cc.KicBaseImage=finalImg
135
135
ifimage.Tag(finalImg) !=image.Tag(baseImg) {
136
-
out.WarningT(fmt.Sprintf("minikube was unable to download %s, but successfully downloaded %s as a fallback image", image.Tag(baseImg), image.Tag(finalImg)))
136
+
out.WarningT(fmt.Sprintf("minikube was unable to download %s, but successfully downloaded %s as a fallback image", image.Tag(baseImg), finalImg))
137
137
}
138
138
}
139
139
}()
140
+
// first we try to download the kicbase image (and fall back images) from docker registry
0 commit comments