sub menu search - workload view#209
Open
dgunzy wants to merge 1 commit into
Open
Conversation
Signed-off-by: Daniel Guns <danbguns@gmail.com>
JamesLouisCassells
approved these changes
Jul 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Workload drill-down + submenu filtering
Closes #194, closes #128
Workload drill-down (#194)
The graph no longer ends at the Flux resource boundary.
Enteron a graphworkload group opens the workload list; from there:
Enteropens a workload's detail — rollout status and replica health(Deployment/StatefulSet/DaemonSet/CronJob aware), containers with images,
a pods table (phase, ready, restarts, age), and the workload's events
lstreams a pod's logs (directly for a single pod, via a pod pickerotherwise) — works from both the list and the detail, and Back returns to
wherever
lwas pressedEscwalks the whole chain in reverse: logs → detail → list → graphRead-only v1. Verified live: a new regression test fetches the real
source-controller Deployment on the dev cluster (pods, containers, events).
Submenu filtering + paging (#128)
Submenus (
:ctx,:skin,:logs, pod picker) now filter with the samekeys as the resource list:
/to filter (cursor shown in the title),type to narrow,
Enterto apply,Escto cancel.PageUp/PageDown(orCtrl+f/b) page through long menus, and:drops straight into commandmode.
Fixed
reconciled at render time with the popup's actual height instead of a
hardcoded 20-row estimate in the key handler (regression-tested at multiple
heights)
low-contrast title colors; they follow the active skin like every other
overlay (full-codebase hardcoded-color sweep is clean)
Testing
661 unit/integration tests passing (
just cigreen), including the fullfilter-mode lifecycle, the drill-down navigation chain, and the logs
back-target from both entry points. 6/6 live tests green against the dev
kind clusters (
just test-live).