From f3a5fca151695ab5c9a84fb4144ac856282b0419 Mon Sep 17 00:00:00 2001 From: DangPeng Liu Date: Thu, 4 May 2023 15:35:27 +0800 Subject: [PATCH] update min tls to 1.13 (#314) Signed-off-by: ldpliu --- pkg/cmd/webhook/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/webhook/start.go b/pkg/cmd/webhook/start.go index 3e6fe2946..5228b0a4e 100644 --- a/pkg/cmd/webhook/start.go +++ b/pkg/cmd/webhook/start.go @@ -38,7 +38,7 @@ func (c *Options) RunWebhookServer() error { Port: c.Port, HealthProbeBindAddress: ":8000", CertDir: c.CertDir, - WebhookServer: &webhook.Server{TLSMinVersion: "1.2"}, + WebhookServer: &webhook.Server{TLSMinVersion: "1.3"}, }) if err != nil {