feat: print tags in nodes list

This commit is contained in:
Adrien Raffin-Caboisse 2022-04-16 13:32:00 +02:00
parent 4fcc5e253c
commit 4651c44dde
No known key found for this signature in database
GPG Key ID: 7FB60532DEBEAD6A

View File

@ -311,6 +311,7 @@ func nodesToPtables(
"Last seen",
"Online",
"Expired",
"Tags",
},
}
@ -356,6 +357,22 @@ func nodesToPtables(
expired = pterm.LightRed("yes")
}
var tags string
for _, tag := range machine.ForcedTags {
tags += "," + tag
}
for _, tag := range machine.InvalidTags {
if !containsString(machine.ForcedTags, tag) {
tags += "," + pterm.LightRed(tag)
}
}
for _, tag := range machine.ValidTags {
if !containsString(machine.ForcedTags, tag) {
tags += "," + pterm.LightGreen(tag)
}
}
tags = strings.TrimLeft(tags, ",")
var namespace string
if currentNamespace == "" || (currentNamespace == machine.Namespace.Name) {
namespace = pterm.LightMagenta(machine.Namespace.Name)
@ -375,6 +392,7 @@ func nodesToPtables(
lastSeenTime,
online,
expired,
tags,
},
)
}