Skip to content

Instance tiers

PandaStack uses a single list of 10 instance tiers for compute sizing. The exact same list — slug, vCPU, RAM, and monthly price — is used for both container apps and databases. Databases additionally carry a disk (GiB) value; container apps ignore the disk column.

Tier slugLabelvCPURAM (GB)DB disk (GiB)$/moFree?
free-tierFree0.250.510yes
standard-tierStandard121018.25no
c1-compute-tierC1-Compute242051.10no
c1-2xcompute-tierC1-2XCompute4840102.20no
c2-compute-tierC2-Compute61260109.50no
c2-2xcompute-tierC2-2XCompute81680219.00no
m1-memory-tierM1-Memory142043.80no
m1-2xmemory-tierM1-2XMemory284087.60no
m2-memory-tierM2-Memory2124094.90no
m2-2xmemory-tierM2-2XMemory42480189.80no

The DB disk column applies to databases only. The container-app tier list is identical in slug, vCPU, RAM, and monthly price.

The paid tiers fall into three families, each with a base tier and a 2X variant that doubles vCPU, RAM, and disk (and roughly doubles the price):

  • Standard — a balanced 1 vCPU / 2 GB tier for general workloads.
  • C-series (compute-optimized)c1 and c2, favoring vCPU. Each has a base and a 2X variant.
  • M-series (memory-optimized)m1 and m2, favoring RAM. Each has a base and a 2X variant.

Every tier slug carries the -tier suffix, and that suffix is load-bearing:

  • The slug must exactly match the Helm value-file name (panda-container-build/helm/<key>.yaml) and the builder allowlist.
  • A key missing the suffix silently falls back to free-tier resources — a paid customer would end up running on free-tier compute. Always use the full slug (for example c1-compute-tier, not c1-compute).

For databases, the disk (GiB) value must stay in lockstep with the worker’s tier-resource definition (kubeblocks.TierResources().DiskGi).

The free-tier (0.25 vCPU / 0.5 GB / 1 GiB disk, $0/mo) is the only free option and behaves differently from paid tiers:

  • Containers on the free tier scale to zero after idle and cold-start on the next request. Paid tiers are always-on.
  • Databases on the free tier are single-zone standalone only (1 replica) and are auto-deleted 30 days after creation (suspended at 30 days, purged 14 days later).

Multi-zone / High Availability databases (replicaset, 3 replicas) require a paid tier. See Free-tier lifecycle and Plans & limits.

  • Container apps pick a tier at create time in the dashboard (or via the API). The tier sets the pod’s CPU/memory request and cost.
  • Databases pick the same tier list plus a disk size derived from the tier. See Database tiers & scaling.

Selecting a paid tier requires a paid organization — the paid-status check (isOrgPaid) gates the create path. See how paid status is determined.