Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Status.Addr occasionally shows 0.0.0.0, removing.
  • Loading branch information
jnovack committed Apr 7, 2018
commit 91bb18cd6bd81cb8a204ab2ea2302b77da02b2ce
2 changes: 1 addition & 1 deletion src/data-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ let physicalStructProvider = ([initialNodes, initialContainers]) => {
currentnode.Description.Hostname = name;
currentnode.name = "<span class='row nodename'>" + name + "</span>" +
"<div class='row noderole role_"+ node.Spec.Role + "'>" + node.Spec.Role + "</div>" +
"<div class='row nodeaddr'>" + node.Status.Addr + "</div>" +
// "<div class='row nodeaddr'>" + node.Status.Addr + "</div>" +
// "<br/><span class='nodemem'>" + (currentnode.Description.Resources.MemoryBytes / 1024 / 1024 / 1024).toFixed(3) + "G RAM</span><br/>" +
// "<span class='nodeplatform'>" + (currentnode.Description.Platform.Architecture) + "/" + (currentnode.Description.Platform.OS) + "</span>" +
"<div class='labelarea'>";
Expand Down