Skip to content

Commit

Permalink
chore: document which Hardware options are supported by aws builders
Browse files Browse the repository at this point in the history
Not my favorite solution, but we can't break ProjectService for users
  • Loading branch information
billyb2 committed Dec 18, 2024
1 parent 0994839 commit 3822e60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proto/depot/core/v1/project.proto
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,17 @@ message CachePolicy {

// Hardware represents the hardware configuration of a project.
enum Hardware {
// By default is 16 CPU and 32GB of memory.
// By default is 16 CPU and 32GB of memory. Supported by AWS builders.
HARDWARE_UNSPECIFIED = 0;
// 16 CPU and 32GB of memory.
// 16 CPU and 32GB of memory. Supported by AWS builders.
HARDWARE_16X32 = 1;
// 4 CPU and 4GB of memory.
HARDWARE_4X4 = 2;
// 8 CPU and 8GB of memory.
HARDWARE_8X8 = 3;
// 8 CPU and 16GB of memory.
// 8 CPU and 16GB of memory. Supported by AWS builders.
HARDWARE_8X16 = 4;
// 32 CPU and 64GB of memory.
// 32 CPU and 64GB of memory. Supported by AWS builders.
HARDWARE_32X64 = 5;
}

Expand Down

0 comments on commit 3822e60

Please sign in to comment.