# CPU & Memory Resources

> Understand how Kubeletto allocates CPU and Memory resources.

- **Category**: Deploy & Configure
- **Last Verified**: 2026-07-14

Kubeletto operates under sandbox quotas. Resources are allocated based on your service requirements and plan level.

## Available Resource Allocations

You can configure CPU and Memory limits during deployment:

| Plan | CPU Allocation (milli) | Memory Allocation (MiB) |
| --- | --- | --- |
| Free Plan | 500m (0.5 core) | 512 MiB |
| Starter Plan | 1000m (1.0 core) | 1024 MiB (1 GiB) |
| Pro Plan | 2000m (2.0 cores) | 2048 MiB (2 GiB) |

## CLI Configuration Example

```bash
kubeletto deploy my-service --image nginx --cpu 500m --memory 512Mi
```

> [!WARNING]
> Free plan containers must scale down to zero when idle. If you require always-warm instances, you must upgrade your billing subscription to the Starter or Pro plan.

