File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
packages/wrangler/src/containers Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11---
2- " wrangler " : major
2+ " wrangler " : patch
33---
44
5- Adds new Container instance types
5+ Adds new Container instance types, and rename ` dev ` to ` lite ` and ` standard ` to ` standard-1 ` . The new instance_types are now:
6+
7+ | Instance Type | vCPU | Memory | Disk |
8+ | -------------------------------- | ---- | ------- | ----- |
9+ | lite (previously dev) | 1/16 | 256 MiB | 2 GB |
10+ | basic | 1/4 | 1 GiB | 4 GB |
11+ | standard-1 (previously standard) | 1/2 | 4 GiB | 8 GB |
12+ | standard-2 | 1 | 6 GiB | 12 GB |
13+ | standard-3 | 2 | 8 GiB | 16 GB |
14+ | standard-4 | 4 | 12 GiB | 20 GB |
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ export const getNormalizedContainerOptions = async (
144144 } ;
145145 } else {
146146 // set a custom instance type
147- // any limits that are not set will default to a dev instance type
147+ // any limits that are not set will default to a lite instance type
148148 instanceTypeOrLimits = {
149149 disk_bytes : ( container . instance_type . disk_mb ?? 2000 ) * MB ,
150150 vcpu : container . instance_type . vcpu ?? 0.0625 ,
You can’t perform that action at this time.
0 commit comments