Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ Output from a small cluster in EKS:

Legend:
-------
✅ - arm64 supported
🆙 - arm64 supported (with update)
❌ - arm64 not supported
✅ - arm64 node compatible
🆙 - arm64 node compatible (after update)
❌ - not arm64 node compatible
🚫 - error occurred
------------------------------------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions changes/31.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Refine legend wording related to arm64 node compatibility
5 changes: 3 additions & 2 deletions cmd/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ const (
errorIcon = "\xF0\x9F\x9A\xAB"
failedIcon = "\xE2\x9D\x8C"
upgradeIcon = "\xF0\x9F\x86\x99"

legend = "Legend:\n-------\n%s - arm64 node compatible\n%s - arm64 node compatible (after update)\n%s - not arm64 node compatible\n%s - error occurred\n%s"
)

var (
Expand Down Expand Up @@ -71,7 +73,7 @@ func imagesCmdRun(_ *cobra.Command, _ []string) {
}

fmt.Printf(
"Legend:\n-------\n%s - arm64 supported\n%s - arm64 supported (with update)\n%s - arm64 not supported\n%s - error occurred\n%s",
legend,
successIcon,
upgradeIcon,
failedIcon,
Expand Down Expand Up @@ -132,7 +134,6 @@ func imagesCmdRun(_ *cobra.Command, _ []string) {
log.Println(res.icon, " image: ", res.image, " error: ", res.err, "\n", imageMap[res.image])
}
}

}

func init() {
Expand Down