fix(kubectl): compact get pods and services aliases#1720
Open
pagarsky wants to merge 1 commit intortk-ai:developfrom
Open
fix(kubectl): compact get pods and services aliases#1720pagarsky wants to merge 1 commit intortk-ai:developfrom
pagarsky wants to merge 1 commit intortk-ai:developfrom
Conversation
Co-authored-by: Cursor <cursoragent@cursor.com>
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
rtk kubectl get pods/get servicesaliases through the existing compact pod and service filters.-o nameor--watch.getparser path and kubectl resource alias routing.Context
RTK's hook already rewrites
kubectl get podstortk kubectl get pods, but that form currently falls through to raw kubectl output instead of using the compact pod/service filters. This madertk gainshow little or no savings for kubectl-heavy sessions, even though kubectl is listed as a supported infrastructure command.This PR keeps the existing rewrite shape and makes
rtk kubectl get pods/get servicesuse the same compact filters asrtk kubectl pods/services. Explicit output/detail flags like-o namestill pass through raw kubectl output.Test plan
cargo fmt --all -- --checkcargo clippy --all-targets -- -D unsafe_codecargo test --all./target/debug/rtk kubectl get pods,./target/debug/rtk kubectl get svc,./target/debug/rtk kubectl get pods -o nameMade with Cursor