Skip to content

Commit

Permalink
Revert "Set TLS minimum version to 1.3 for Ingress to Activator (knat…
Browse files Browse the repository at this point in the history
…ive#14074)"

This reverts commit 8ea1cb6.
  • Loading branch information
nak3 committed Aug 11, 2023
1 parent a3d42b1 commit acad7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/activator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ func main() {
name, server := "https", pkgnet.NewServer(":"+strconv.Itoa(networking.BackendHTTPSPort), ah)
go func(name string, s *http.Server) {
s.TLSConfig = &tls.Config{
MinVersion: tls.VersionTLS13,
MinVersion: tls.VersionTLS12,
GetCertificate: certCache.GetCertificate,
}
// Don't forward ErrServerClosed as that indicates we're already shutting down.
Expand Down

0 comments on commit acad7c0

Please sign in to comment.