const maxRequestSize …
func NewServerCommand() *cobra.Command { … }
func runServer(ctx context.Context, opts *options.Options) error { … }
type Server …
func (s *Server) Start(ctx context.Context) error { … }
func (s *Server) HandleValidate(w http.ResponseWriter, r *http.Request) { … }
type Config …
func LoadConfig(opts *options.Options) (*Config, error) { … }
func Setup(c *Config) (*Server, error) { … }
func writeResponse(w http.ResponseWriter, review *admissionv1.AdmissionReview) { … }
func parseTimeout(req *http.Request) (time.Duration, bool, error) { … }