From cf099f4fc9028c60e62de33223492d1ef4e03585 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Wed, 8 Oct 2025 18:13:00 +0200 Subject: [PATCH] Update --chunk-size flag, dropping the beta information The --chunk-size flag has been around since October 2017 (ihttps://github.com/kubernetes/kubernetes/commit/4780ad02978e7aea80f3b50ec20c9abeec13ce69) so it's about time we make it official. Signed-off-by: Maciej Szulik --- staging/src/k8s.io/kubectl/pkg/cmd/util/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/kubectl/pkg/cmd/util/helpers.go b/staging/src/k8s.io/kubectl/pkg/cmd/util/helpers.go index 855f43ce676..fc623dded3f 100644 --- a/staging/src/k8s.io/kubectl/pkg/cmd/util/helpers.go +++ b/staging/src/k8s.io/kubectl/pkg/cmd/util/helpers.go @@ -538,7 +538,7 @@ func AddApplyAnnotationVarFlags(cmd *cobra.Command, applyAnnotation *bool) { func AddChunkSizeFlag(cmd *cobra.Command, value *int64) { cmd.Flags().Int64Var(value, "chunk-size", *value, - "Return large lists in chunks rather than all at once. Pass 0 to disable. This flag is beta and may change in the future.") + "Return large lists in chunks rather than all at once. Pass 0 to disable.") } func AddLabelSelectorFlagVar(cmd *cobra.Command, p *string) {