From ebb5a8e0efca47992babf00614edc1a57cf9c745 Mon Sep 17 00:00:00 2001 From: Parag Jain Date: Sun, 19 Jul 2026 22:40:29 +0530 Subject: [PATCH] set default quotas as per trial plan --- admin/billing/orb.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/billing/orb.go b/admin/billing/orb.go index 8af240736961..fad0bc621b0c 100644 --- a/admin/billing/orb.go +++ b/admin/billing/orb.go @@ -55,11 +55,11 @@ func (o *Orb) DefaultQuotas() Quotas { return Quotas{ StorageLimitBytesPerDeployment: toPtr(int64(10737418240)), // 10GB NumProjects: toPtr(1), - NumDeployments: toPtr(20), - NumSlotsTotal: toPtr(40), - NumSlotsPerDeployment: toPtr(8), + NumDeployments: toPtr(4), + NumSlotsTotal: toPtr(32), + NumSlotsPerDeployment: toPtr(32), NumOutstandingInvites: toPtr(200), - NumSeats: toPtr(10), + NumSeats: toPtr(8), NumAPICallsPerSeat: toPtr(2500), NumTokensPerSeat: toPtr(1000000), }