-
Notifications
You must be signed in to change notification settings - Fork 40.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support api chunking in kubectl get #53768
Support api chunking in kubectl get #53768
Conversation
@smarterclayton: Adding do-not-merge/release-note-label-needed because the release note process has not been followed. One of the following labels is required "release-note", "release-note-action-required", or "release-note-none". Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
hack/make-rules/test-cmd-util.sh
Outdated
output_message=$(kubectl --v=6 get clusterrole --chunk-size=10 2>&1 "${kube_flags[@]}") | ||
# Post-condition: Check if we get a limit and continue | ||
kube::test::if_has_string "${output_message}" "/apis/rbac.authorization.k8s.io/v1/clusterroles?limit=10 200 OK" | ||
kube::test::if_has_string "${output_message}" "/apis/rbac.authorization.k8s.io/v1/clusterroles?continue=" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
omit /apis/rbac.authorization.k8s.io/v1
... we don't care what version, just the query params
@@ -223,6 +225,7 @@ func RunGet(f cmdutil.Factory, out, errOut io.Writer, cmd *cobra.Command, args [ | |||
FilenameParam(enforceNamespace, &options.FilenameOptions). | |||
SelectorParam(selector). | |||
ExportParam(export). | |||
RequestChunksOf(options.ChunkSize). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not Limit()
or LimitParam()
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't want to expose that yet, Limit itself is only of partial utility. I was focused on "i want to do what i did before, but in chunks".
that was shockingly small |
52760bb
to
da1065f
Compare
I realized why this was so easy. It's because get isn't using the visitor pattern anymore. That needs to be fixed. So this will get larger because get is a monstrosity now. |
/assign @jpbetz |
I'm going to do the get changes in a follow up (to show partial results on the client) - no reason to block here and this clean up sets the stage for it to be useful. |
da1065f
to
4d40086
Compare
/retest |
1 similar comment
/retest |
@@ -75,6 +75,9 @@ type MetadataAccessor interface { | |||
Annotations(obj runtime.Object) (map[string]string, error) | |||
SetAnnotations(obj runtime.Object, annotations map[string]string) error | |||
|
|||
Continue(obj runtime.Object) (string, error) | |||
SetContinue(obj runtime.Object, c string) error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesn't this belong in ListMetaAccessor, not MetadataAccessor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, surprised this didn't complain that this wasn't implemented in *ObjectMeta, genericAccessor, etc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are three accessors. A generic one (that has all methods and returns an error if it doesn't support it), and then one specific one for lists and one for metadata.
4d40086
to
d1b20e4
Compare
Fixed a bug in the get loop where an error wouldn't exit correctly. |
Any other comments? |
pkg/kubectl/cmd/get.go
Outdated
@@ -137,6 +138,7 @@ func NewCmdGet(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Comman | |||
cmd.Flags().Bool("show-kind", false, "If present, list the resource type for the requested object(s).") | |||
cmd.Flags().Bool("all-namespaces", false, "If present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace.") | |||
cmd.Flags().BoolVar(&options.IgnoreNotFound, "ignore-not-found", false, "Treat \"resource not found\" as a successful retrieval.") | |||
cmd.Flags().Int64Var(&options.ChunkSize, "experimental-chunk-size", 500, "Return large lists in chunks rather than all at once. Pass 0 to disable.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
drop experimental
from the flag and explicitly document it as beta? (per https://kubernetes.io/docs/reference/deprecation-policy/)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated, we don't have a lot of other flags with wording like this yet so I tried to stay generic.
nit on flag, LGTM otherwise |
This enables chunking in the resource builder to make it easy to retrieve resources in pages and visit partial result sets. This adds `--chunk-size` to `kubectl get` only so that users can get comfortable with the use of chunking in beta. Future changes will enable chunking for all CLI commands so that bulk actions can be performed more efficiently.
d1b20e4
to
4780ad0
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: liggitt, smarterclayton No associated issue. Update pull-request body to add a reference to an issue, or get approval with The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
@smarterclayton: The following tests failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/retest |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
This enables chunking in the resource builder to make it easy to
retrieve resources in pages and visit partial result sets. This adds
--chunk-size
tokubectl get
only so that users can get comfortablewith the use of chunking in beta. Future changes will enable chunking
for all CLI commands so that bulk actions can be performed more
efficiently.
@kubernetes/sig-cli-pr-reviews @kubernetes/sig-api-machinery-pr-reviews