Merge pull request #27910 from dperny/node_ip_in_raft

Auto-detect node IP address 
Upstream-commit: 938d24ab51
Component: cli
This commit is contained in:
Sebastiaan van Stijn
2016-11-03 10:30:55 -07:00
committed by GitHub

View File

@ -95,6 +95,7 @@ func printNode(out io.Writer, node swarm.Node) {
fmt.Fprintf(out, " State:\t\t\t%s\n", command.PrettyPrint(node.Status.State))
ioutils.FprintfIfNotEmpty(out, " Message:\t\t%s\n", command.PrettyPrint(node.Status.Message))
fmt.Fprintf(out, " Availability:\t\t%s\n", command.PrettyPrint(node.Spec.Availability))
ioutils.FprintfIfNotEmpty(out, " Address:\t\t%s\n", command.PrettyPrint(node.Status.Addr))
if node.ManagerStatus != nil {
fmt.Fprintln(out, "Manager Status:")