From 1836f37f4d5a59f8e8fa9b78bb2517e6069292ac Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Sat, 25 Oct 2025 13:27:35 +0200 Subject: [PATCH] The default is not HookOnlyStrategy but WaitStrategy Signed-off-by: Benoit Tigeot --- pkg/cmd/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/flags.go b/pkg/cmd/flags.go index 1aef6430a..55633e62b 100644 --- a/pkg/cmd/flags.go +++ b/pkg/cmd/flags.go @@ -89,7 +89,7 @@ func (ws *waitValue) Set(s string) error { *ws = waitValue(kube.StatusWatcherStrategy) return nil case "false": - slog.Warn("--wait=false is deprecated (boolean value) and can be replaced by omitting the --wait flag") + slog.Warn("--wait=false is deprecated (boolean value) and can be replaced with --wait=hookOnly") *ws = waitValue(kube.HookOnlyStrategy) return nil default: