From b903aea6abaec8cb747b9802195d42ec4e0e5230 Mon Sep 17 00:00:00 2001 From: r-vasquez Date: Fri, 13 Dec 2024 11:50:44 -0800 Subject: [PATCH] rpk remote debug bundle: job-id help text change This string must be a UUID and it was not clear in the help text. (cherry picked from commit 7f8322ca0d5e2a5905311c9a62782be03a55e1cd) --- src/go/rpk/pkg/cli/debug/remotebundle/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/rpk/pkg/cli/debug/remotebundle/start.go b/src/go/rpk/pkg/cli/debug/remotebundle/start.go index ba477a28956ca..bec3b1b5086dd 100644 --- a/src/go/rpk/pkg/cli/debug/remotebundle/start.go +++ b/src/go/rpk/pkg/cli/debug/remotebundle/start.go @@ -155,7 +155,7 @@ status, run: }, } f := cmd.Flags() - f.StringVar(&jobID, "job-id", "", "ID of the job to start debug bundle in") + f.StringVar(&jobID, "job-id", "", "Custom UUID to assign to the job that generates the debug bundle") f.BoolVar(&noConfirm, "no-confirm", false, "Disable confirmation prompt") // Debug bundle options: opts.InstallFlags(f)