From 0463cef9b697d13a6d1d48ce080be31e97fff41a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Valais?= Date: Thu, 23 Mar 2023 12:28:11 +0100 Subject: [PATCH] klog: warn people that the flags may get removed in the future MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maƫl Valais --- pkg/logs/logs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/logs/logs.go b/pkg/logs/logs.go index ca3ec241d9a..c2ac196e0b9 100644 --- a/pkg/logs/logs.go +++ b/pkg/logs/logs.go @@ -83,7 +83,7 @@ func InitLogs(fs *pflag.FlagSet) { // Unchanged. default: // Deprecated. - pf.Deprecated = fmt.Sprintf("this flag will be removed in cert-manager 1.15") + pf.Deprecated = fmt.Sprintf("this flag may be removed in the future") } fs.AddFlag(pf) })