diff --git a/pkg/webhook/server.go b/pkg/webhook/server.go index 19a9888391..a047541b24 100644 --- a/pkg/webhook/server.go +++ b/pkg/webhook/server.go @@ -140,6 +140,7 @@ func (s *Server) Start(stop <-chan struct{}) error { cfg := &tls.Config{ Certificates: []tls.Certificate{cert}, + NextProtos: []string{"h2"}, } listener, err := tls.Listen("tcp", net.JoinHostPort(s.Host, strconv.Itoa(int(s.Port))), cfg)