Revolyssup commented on code in PR #2583:
URL:
https://github.com/apache/apisix-ingress-controller/pull/2583#discussion_r2386799303
##########
internal/manager/webhooks.go:
##########
@@ -38,6 +38,15 @@ func setupWebhooks(_ context.Context, mgr manager.Manager)
error {
if err := webhookv1.SetupGatewayProxyWebhookWithManager(mgr); err !=
nil {
return err
}
+ if err := webhookv1.SetupHTTPRouteWebhookWithManager(mgr); err != nil {
+ return err
+ }
+ if err := webhookv1.SetupGRPCRouteWebhookWithManager(mgr); err != nil {
+ return err
+ }
+ if err := webhookv1.SetupTCPRouteWebhookWithManager(mgr); err != nil {
+ return err
+ }
Review Comment:
Since UDPRoute PR is merged. Should we add that as well?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]