Skip to content

Commit f248a2c

Browse files
authored
Refine legend wording related to arm64 node compatibility (#31)
* Refine legend wording related to arm64 node compatibility * newsfile
1 parent 689bdf9 commit f248a2c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ Output from a small cluster in EKS:
6464

6565
Legend:
6666
-------
67-
✅ - arm64 supported
68-
🆙 - arm64 supported (with update)
69-
❌ - arm64 not supported
67+
✅ - arm64 node compatible
68+
🆙 - arm64 node compatible (after update)
69+
❌ - not arm64 node compatible
7070
🚫 - error occurred
7171
------------------------------------------------------------------------------------------------
7272

changes/31.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Refine legend wording related to arm64 node compatibility

cmd/images.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ const (
3333
errorIcon = "\xF0\x9F\x9A\xAB"
3434
failedIcon = "\xE2\x9D\x8C"
3535
upgradeIcon = "\xF0\x9F\x86\x99"
36+
37+
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"
3638
)
3739

3840
var (
@@ -71,7 +73,7 @@ func imagesCmdRun(_ *cobra.Command, _ []string) {
7173
}
7274

7375
fmt.Printf(
74-
"Legend:\n-------\n%s - arm64 supported\n%s - arm64 supported (with update)\n%s - arm64 not supported\n%s - error occurred\n%s",
76+
legend,
7577
successIcon,
7678
upgradeIcon,
7779
failedIcon,
@@ -132,7 +134,6 @@ func imagesCmdRun(_ *cobra.Command, _ []string) {
132134
log.Println(res.icon, " image: ", res.image, " error: ", res.err, "\n", imageMap[res.image])
133135
}
134136
}
135-
136137
}
137138

138139
func init() {

0 commit comments

Comments
 (0)