From 3ed4b565d988843a945fcf9c73ff74d410d6608e Mon Sep 17 00:00:00 2001 From: dvankeke Date: Mon, 10 Aug 2026 09:42:44 +0200 Subject: [PATCH] change: [APL-2048] - change APL minimum requirements --- packages/manager/src/features/components/PlansPanel/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/manager/src/features/components/PlansPanel/utils.ts b/packages/manager/src/features/components/PlansPanel/utils.ts index 3da00809f73..a4a521636a3 100644 --- a/packages/manager/src/features/components/PlansPanel/utils.ts +++ b/packages/manager/src/features/components/PlansPanel/utils.ts @@ -421,7 +421,7 @@ export const extractPlansInformation = ({ ); const planIsTooSmallForAPL = - isAPLEnabled && Boolean(plan.memory < 8000 || plan.vcpus < 4); + isAPLEnabled && Boolean(plan.memory < 4000 || plan.vcpus < 2); return { ...plan,