From 3cc0d808b9e682466c0dc09b70b461ed3a449c85 Mon Sep 17 00:00:00 2001 From: DangPeng Liu Date: Thu, 4 May 2023 15:27:43 +0800 Subject: [PATCH] update min tls to 1.13 (#201) 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 acff7fb42..9c359c65f 100644 --- a/pkg/cmd/webhook/start.go +++ b/pkg/cmd/webhook/start.go @@ -34,7 +34,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 {