Skip to content

Commit d74f2f3

Browse files
committed
fixup changeset
1 parent 9997dda commit d74f2f3

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.changeset/hip-ants-wait.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
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 |

packages/wrangler/src/containers/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)