We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac263f commit 47fe5b2Copy full SHA for 47fe5b2
cmd/minikube/cmd/start.go
@@ -1024,7 +1024,6 @@ func validateNetwork(h *host.Host, r command.Runner) string {
1024
}
1025
1026
tryLookup(r)
1027
- tryPing(r)
1028
tryRegistry(r)
1029
return ip
1030
@@ -1058,13 +1057,6 @@ func tryLookup(r command.Runner) {
1058
1057
1059
1060
1061
-func tryPing(r command.Runner) {
1062
- // Try both UDP and ICMP to assert basic external connectivity
1063
- if err := r.Run("nslookup k8s.io 8.8.8.8 || nslookup k8s.io 1.1.1.1 || ping -c1 8.8.8.8"); err != nil {
1064
- out.WarningT("VM is unable to directly connect to the internet: {{.error}}", out.V{"error": err})
1065
- }
1066
-}
1067
-
1068
func tryRegistry(r command.Runner) {
1069
// Try an HTTPS connection to the image repository
1070
proxy := os.Getenv("HTTPS_PROXY")
0 commit comments