Skip to content

Commit aaf44f9

Browse files
committed
Add jailer config to proto generation
This commit adds the jailer config to the proto defintion as well as regenerating of the models. Signed-off-by: xibz <[email protected]>
1 parent 0165b0b commit aaf44f9

File tree

2 files changed

+80
-34
lines changed

2 files changed

+80
-34
lines changed

proto/firecracker.pb.go

Lines changed: 74 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/firecracker.proto

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ message CreateVMRequest {
3232

3333
// Whether the VM should exit after all tasks running in it have been deleted.
3434
bool ExitAfterAllTasksDeleted = 9;
35+
36+
JailerConfig JailerConfig = 10;
3537
}
3638

3739
message StopVMRequest {
@@ -54,4 +56,7 @@ message GetVMInfoResponse {
5456
message SetVMMetadataRequest {
5557
string VMID = 1;
5658
string Metadata = 2;
57-
}
59+
}
60+
61+
message JailerConfig {
62+
}

0 commit comments

Comments
 (0)