Skip to content

Commit 21bf3d3

Browse files
committed
Bump max instance RAM to 1536 GiB
Since oxidecomputer/omicron#8527 the control plane has been happy to accept such sizes.
1 parent 320a6c4 commit 21bf3d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/api/util.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ import type {
2323
VpcFirewallRuleUpdate,
2424
} from './__generated__/Api'
2525

26-
// API limits encoded in https://github.com/oxidecomputer/omicron/blob/b7af5f8e/nexus/src/app/mod.rs
26+
// API limits encoded in https://github.com/oxidecomputer/omicron/blob/aec3cd8d/nexus/src/app/mod.rs
2727

2828
export const MAX_NICS_PER_INSTANCE = 8
2929

3030
export const INSTANCE_MAX_CPU = 64
3131
export const INSTANCE_MIN_RAM_GiB = 1
32-
export const INSTANCE_MAX_RAM_GiB = 1024
32+
export const INSTANCE_MAX_RAM_GiB = 1536
3333

3434
export const MIN_DISK_SIZE_GiB = 1
3535
/**
36-
* Disk size limited to 1023 as that's the maximum we can safely allocate right now
36+
* Disk size limited to 1023 as that's the maximum we can safely allocate right now
3737
* @see https://github.com/oxidecomputer/omicron/issues/3212#issuecomment-1634497344
3838
*/
3939
export const MAX_DISK_SIZE_GiB = 1023

0 commit comments

Comments
 (0)