Skip to content

Commit

Permalink
Also show IP address of the node
Browse files Browse the repository at this point in the history
  • Loading branch information
Radoslaw Smigielski committed Apr 27, 2020
1 parent 4c1e6c5 commit a843b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/node_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var nodeListCmd = &cobra.Command{

for _, n := range cc.Nodes {
machineName := driver.MachineName(*cc, n)
fmt.Printf("%s\n", machineName)
fmt.Printf("%s\t%s\n", machineName, n.IP)
}
os.Exit(0)
},
Expand Down

0 comments on commit a843b30

Please sign in to comment.