You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`/`| Filter resources by name (in list views) or search text (in YAML/describe/trace views) |
59
+
|`n` / `N`| Jump to next/previous search match (in YAML/describe/trace views) |
60
+
|`Shift+N`| Sort list by name (press again to reverse, third press restores default order) |
61
+
|`Shift+A`| Sort list by age |
62
+
|`Shift+T`| Sort list by type |
63
+
|`Shift+S`| Sort list by status (problems first) |
59
64
|`s`| Suspend reconciliation |
60
65
|`r`| Resume reconciliation |
61
66
|`R`| Reconcile resource |
@@ -165,6 +170,30 @@ The header displays a health percentage indicator showing the overall health of
165
170
-**Yellow (⚠)** - 70-89% health
166
171
-**Red (✗)** - Below 70% health
167
172
173
+
## Sorting
174
+
175
+
Sort the resource list k9s-style with shift-key shortcuts: `Shift+N` (name), `Shift+A` (age), `Shift+T` (type), or `Shift+S` (status, problems first). Press the same key again to reverse the order, and a third time to restore the default namespace/type/name ordering. The active sort column is marked with an arrow (`↑`/`↓`) in the table header, and favorites always stay grouped at the top.
176
+
177
+
## Searching Text Views
178
+
179
+
Inside the YAML (`y`), describe (`d`), and trace (`t`) views, press `/` to search:
180
+
181
+
- Type a query and press `Enter` to jump to the first match (matching is case-insensitive)
182
+
-`n` / `N` - Jump to the next/previous match
183
+
-`Esc` - Clear the search (press again to leave the view)
184
+
185
+
The view title shows the active query and match position (e.g., `/spec (2/7)`), and matching lines are highlighted.
186
+
187
+
## Watch Status Banner
188
+
189
+
flux9s watches the cluster continuously. If the connection to the API server degrades (network outage, VPN reconnect, laptop sleep), a red banner appears in the top-right corner of the resource list:
190
+
191
+
```
192
+
⚠ Watch degraded (N) — data may be stale, reconnecting...
193
+
```
194
+
195
+
Watchers retry automatically with exponential backoff; the banner disappears as soon as the watch streams recover. While the banner is visible, the displayed resources may be out of date.
0 commit comments