Update --chunk-size flag, dropping the beta information

The --chunk-size flag has been around since October 2017
(i4780ad0297)
so it's about time we make it official.

Signed-off-by: Maciej Szulik <soltysh@gmail.com>
This commit is contained in:
Maciej Szulik
2025-10-08 18:13:00 +02:00
parent 2e2c63ef73
commit cf099f4fc9

View File

@@ -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) {