Update pkg/minikube/node/start.go

Co-authored-by: Steven Powell <44844360+spowelljr@users.noreply.github.com>
pull/18859/head
錦南路之花 2024-07-04 00:26:43 +02:00 committed by GitHub
parent 6eec56de76
commit c4a5dd44c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -873,7 +873,7 @@ func tryRegistry(r command.Runner, driverName, imageRepository, ip string) {
// now we shall also try whether this registry is reachable outside the machine
// so that we can tell in the logs that if the user's computer had any network issue or could it be related to a network module config change in minikbue ISO
//We should skip the second check if the user is using the none or ssh driver since there is no different
// We should skip the second check if the user is using the none or ssh driver since there is no difference
// between an "inside" and "outside" check on the none driver, and checking the host on the ssh driver is not helpful.
if driver.IsNone(driverName) || driver.IsSSH(driverName) {
out.WarningT("Failing to connect to {{.curlTarget}} from inside the minikube {{.type}}", out.V{"curlTarget": curlTarget, "type": driver.MachineType(driverName)})