kueue: Open resource details in a side panel instead of full navigation - #1179
Open
Adi-204 wants to merge 1 commit into
Open
kueue: Open resource details in a side panel instead of full navigation#1179Adi-204 wants to merge 1 commit into
Adi-204 wants to merge 1 commit into
Conversation
Clicking a ClusterQueue, LocalQueue, ResourceFlavor, or Workload name
(including cross-links between them) previously navigated to a full-page
detail view. Kueue's CRDs aren't in Headlamp core's kindComponentMap, so
the built-in drawer/split-panel feature never applied to them.
Follow the pattern already used by the kyverno and kmesh plugins: render
the name column as a button that calls Activity.launch({ location:
'split-right', ... }), opening the same Detail component as a side panel
with a "Fullscreen" option to maximize.
Signed-off-by: Adi-204 <adiboghawala@gmail.com>
Adi-204
requested review from
ashu8912,
illume,
joaquimrocha,
skoeva,
sniok,
vyncent-t and
yolossn
as code owners
August 14, 2026 18:40
Adi-204
force-pushed
the
fix/kueue-detail-side-panel
branch
from
August 15, 2026 09:56
6662bbb to
f171adf
Compare
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.
Summary
kindComponentMap(seefrontend/src/components/resourceMap/details/KubeNodeDetails.tsx). Kueue's CRDs aren't in that map, soLink's default navigation always won.kyvernoandkmeshplugins in this repo: each list's name column (and each cross-link) now callsActivity.launch({ location: 'split-right', ... })with the sameDetailcomponent as content, so it opens as a side panel with a "Fullscreen" option to maximize.Detailcomponent now accepts optionalname/namespaceprops (falling back touseParams()), so the same component works both as a routed page and asActivitycontent.Test plan
npm run tscpasses with no errorsnpm run lintpasses with no errors/warnings