From b9c926acbcaa07f34b3fde994a7534ff8200885b Mon Sep 17 00:00:00 2001 From: tziyon31 Date: Fri, 10 Jul 2026 15:22:26 +0300 Subject: [PATCH] fix: correct webhook typo in CLI help text Signed-off-by: tziyon31 --- go/core/pkg/app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/core/pkg/app/app.go b/go/core/pkg/app/app.go index 1cf46122c..ff4eb0fb0 100644 --- a/go/core/pkg/app/app.go +++ b/go/core/pkg/app/app.go @@ -170,7 +170,7 @@ func (cfg *Config) SetFlags(commandLine *flag.FlagSet) { commandLine.StringVar(&cfg.Metrics.CertKey, "metrics-cert-key", "tls.key", "The name of the metrics server key file.") commandLine.StringVar(&cfg.Webhook.CertPath, "webhook-cert-path", "", "The directory that contains the webhook server certificate.") - commandLine.StringVar(&cfg.Webhook.CertName, "webhook-cert-name", "tls.crt", "The name of the wehbook server certificate file.") + commandLine.StringVar(&cfg.Webhook.CertName, "webhook-cert-name", "tls.crt", "The name of the webhook server certificate file.") commandLine.StringVar(&cfg.Webhook.CertKey, "webhook-cert-key", "tls.key", "The name of the webhook server key file.") commandLine.BoolVar(&cfg.EnableHTTP2, "enable-http2", false, "If set, HTTP/2 will be enabled for the metrics and webhook servers")