Skip to content

Commit

Permalink
resolve comments for pr
Browse files Browse the repository at this point in the history
Signed-off-by: Amory Hoste <[email protected]>
  • Loading branch information
amohoste committed Dec 19, 2021
1 parent 63f16b2 commit d6e4a75
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 68 deletions.
130 changes: 65 additions & 65 deletions proto/types.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions proto/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,13 @@ message IPConfiguration {
message FirecrackerMachineConfiguration {
string CPUTemplate = 1; // Specifies the cpu template. Example: "T2" or "C3"
bool HtEnabled = 2; // Specifies if hyper-threading should be enabled
bool TrackDirtyPages = 3; // Specified if dirty-page-tracking should be enabled.
// Specifies the memory size of VM
// This lets us create a Firecracker VM of up to 4096 TiB, which
// for a microVM should be large enough
uint32 MemSizeMib = 4;
uint32 VcpuCount = 5; // Specifies the number of vCPUs for the VM
uint32 MemSizeMib = 3;
uint32 VcpuCount = 4; // Specifies the number of vCPUs for the VM
bool TrackDirtyPages = 5; // Specified if dirty-page-tracking should be enabled.

}

// Message to specify the block device config for a Firecracker VM
Expand Down

0 comments on commit d6e4a75

Please sign in to comment.