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
-**Reconciliation history** - View reconciliation history for resources that track it
36
37
-**Favorites** - Mark frequently accessed resources for quick access
@@ -143,6 +144,7 @@ By default, `flux9s` watches the `flux-system` namespace. Use `:ns all` to view
143
144
-`:ns <namespace>` - Switch namespace
144
145
-`:ns all` - View all namespaces
145
146
-`:favorites` or `:fav` - View favorite resources
147
+
-`:events` or `:ev` - Live Kubernetes events feed (current namespace scope)
146
148
-`:skin {skin-name}` - set skin directly
147
149
-`:skin` - open interactive theme selection menu with live preview (17 built-in themes + custom)
148
150
-`:q` or `:q!` - Quit
@@ -152,6 +154,7 @@ By default, `flux9s` watches the `flux-system` namespace. Use `:ns all` to view
152
154
153
155
-**Graph View (`g`)** - Visualize resource relationships and dependencies. Shows upstream sources and downstream managed resources. Move the highlighted focus between nodes with `j`/`k` (the view scrolls to keep it visible), press `Enter` to open the focused resource's detail view, and `Esc` to return to the graph. Supported for Kustomization, HelmRelease, ArtifactGenerator, FluxInstance, and ResourceSet.
154
156
-**History View (`h`)** - View reconciliation history for FluxInstance, ResourceSet, Kustomization, and HelmRelease resources.
157
+
-**Events View (`:events`)** - Live Kubernetes events feed for the current namespace (or cluster-wide with `:ns all`), newest first with Warnings highlighted. `Enter` jumps to the involved resource; the describe view (`d`) also shows a per-resource Events section.
155
158
-**Favorites (`f`)** - Mark resources as favorites for quick access. Use `:favorites` command to view all favorites.
Copy file name to clipboardExpand all lines: docs/content/user-guide/_index.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,8 @@ Type these commands in command mode (press `:`):
95
95
|`:unhealthy`| Show only unhealthy resources |
96
96
|`:favorites`| View favorite resources |
97
97
|`:fav`| Alias for `:favorites`|
98
+
|`:events`| Live Kubernetes events feed |
99
+
|`:ev`| Alias for `:events`|
98
100
|`:skin <name>`| Change theme/skin (direct) |
99
101
|`:skin`| Open interactive theme selection menu |
100
102
|`:readonly`| Toggle readonly mode |
@@ -219,7 +221,8 @@ The graph view displays:
219
221
220
222
-`j` / `k` (or `↓` / `↑`) - Move the highlighted focus between nodes; the view scrolls to keep the focused node visible.
221
223
-`Enter` - Open the focused node's resource in the detail view. Aggregate nodes (workload/resource groups) and external upstream URLs aren't directly openable.
222
-
-`Esc` / `Backspace` - Return to the graph (when you opened a detail view from it), then back to the resource list.
224
+
-`y` / `d` - View the focused node's YAML or describe output directly, including managed workloads (Deployments, Services, etc.).
225
+
-`Esc` / `Backspace` - Return to the graph (when you opened a view from it), then back to the resource list.
223
226
224
227
Focus starts on the resource you opened the graph from, so you can immediately walk its sources and dependencies.
225
228
@@ -250,6 +253,31 @@ Mark frequently accessed resources as favorites for quick access.
250
253
- Favorites are saved to your configuration file
251
254
- Favorites appear first in resource lists
252
255
256
+
### Events View (`:events`)
257
+
258
+
A live feed of Kubernetes Events in the current namespace scope — the
259
+
"what is Flux doing right now" view. Flux controllers emit an Event for every
260
+
reconciliation success and failure, so this surfaces error detail that the
261
+
resource list's MESSAGE column truncates.
262
+
263
+
- The feed follows your namespace scope: the current namespace by default, or
264
+
the whole cluster after `:ns all` (a NAMESPACE column appears)
265
+
- Events are streamed in real time, newest first, with Warnings highlighted
266
+
-`/` filters by type, reason, object, namespace, source, or message text
267
+
-`Enter` on an event jumps to the involved resource's detail view when it is
268
+
a Flux resource flux9s watches; `Esc` returns to the events feed
269
+
- Resource keys act on the selected event's involved object directly: `y`
270
+
(YAML) and `d` (describe) work even for non-Flux objects like Pods and
271
+
Deployments, while `t`/`g`/`h` and operations (`s`/`r`/`R`) work when the
272
+
object is a watched Flux resource. `Esc` from any of these returns to the
273
+
events feed
274
+
-`Esc` from the feed returns to the resource list and stops the events watch —
275
+
events are only streamed while the view is open, so there is no overhead the
276
+
rest of the time
277
+
278
+
Events also appear in the describe view (`d`): each resource's describe output
279
+
ends with a kubectl-style Events section listing that resource's recent events.
0 commit comments