always show actions

This commit is contained in:
2026-07-08 10:20:02 +02:00
parent 5e569b91fc
commit 0902b44780
2 changed files with 6 additions and 1 deletions

View File

@@ -239,6 +239,10 @@ func ClusterStatus(conf *cfg.Config) error {
for resource, items := range diag.AffectedResources {
table.Entries = append(table.Entries, []any{" -> affected " + resource, strings.Join(items, ",")})
}
if diag.Action != "" {
table.AddRow(" -> suggested action to fix", diag.Action)
}
}
}
}