From c24489854dad77e8401b63597fda1e5da6b51e9f Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 25 Mar 2023 16:41:00 -0500 Subject: [PATCH] removes restrictive tls configuration --- cmd/webhook/httpServer.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cmd/webhook/httpServer.go b/cmd/webhook/httpServer.go index b07a6c8..af2b282 100644 --- a/cmd/webhook/httpServer.go +++ b/cmd/webhook/httpServer.go @@ -49,14 +49,6 @@ func httpServer(cfg *config.Config) { IdleTimeout: time.Duration(cfg.WebServerIdleTimeout) * time.Second, TLSConfig: &tls.Config{ MinVersion: tls.VersionTLS12, - CipherSuites: []uint16{ - tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, - tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, - tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, - tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, - tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305, - tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, - }, Certificates: []tls.Certificate{ serverCertificate, },