From 8fc73cbf28be83a2a8a02ad9efabaae36c848d26 Mon Sep 17 00:00:00 2001 From: Marco De Luca <43579204+mdnix@users.noreply.github.com> Date: Wed, 8 Oct 2025 11:25:30 +0200 Subject: [PATCH] Revert "Disable billing controller via flag by default" --- cmd/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/controller.go b/cmd/controller.go index 318129ff81..c04ecfb4d3 100644 --- a/cmd/controller.go +++ b/cmd/controller.go @@ -54,7 +54,7 @@ func init() { ControllerCMD.Flags().StringVar(&c.certDir, "certdir", "/etc/webhook/certs", "Set the webhook certificate directory") ControllerCMD.Flags().BoolVar(&c.enableQuotas, "quotas", false, "Enable the quota webhooks, is only active if webhooks is also true") ControllerCMD.Flags().BoolVar(&c.enableEventForwarding, "event-forwarding", true, "Disable event-forwarding") - ControllerCMD.Flags().BoolVar(&c.enableBilling, "billing", false, "Disable billing") + ControllerCMD.Flags().BoolVar(&c.enableBilling, "billing", true, "Disable billing") viper.AutomaticEnv() if !viper.IsSet("PLANS_NAMESPACE") { viper.Set("PLANS_NAMESPACE", "syn-appcat")