Scaling Resources
Adjust replicas, CPU, and memory for your project environments from the terminal.
View Current Settings
Bash1createos scale --show
Output:
Current scale settings:
Replicas: 1
CPU: 200m
Memory: 512MB
Scale Resources
Bash1createos scale --replicas 2 --cpu 300 --memory 512
The CLI shows a before/after comparison:
Before After
Replicas 1 2
CPU 200m 300m
Memory 512MB 512MB
✓ Scaling complete.
Limits
| Resource | Min | Max |
|---|---|---|
| Replicas | 1 | 3 |
| CPU | 200m | 500m |
| Memory | 500MB | 1024MB |
The CLI validates these limits before sending the request. If you need higher limits, contact support or use the Enterprise plan.
Scale Individual Resources
You can adjust one dimension at a time — the others remain unchanged:
Bash1# Only replicas2createos scale --replicas 334# Only CPU5createos scale --cpu 50067# Only memory8createos scale --memory 1024