Skip to content

Commit 05dbbcc

Browse files
committed
Adding runc jailing
Signed-off-by: xibz <[email protected]>
1 parent 9ac2c29 commit 05dbbcc

19 files changed

+1094
-134
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/docker/go-events v0.0.0-20170721190031-9461782956ad // indirect
1818
github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82 // indirect
1919
github.com/docker/go-units v0.3.3
20-
github.com/firecracker-microvm/firecracker-go-sdk v0.17.0
20+
github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20190813001757-92286fa36514
2121
github.com/go-ole/go-ole v1.2.4 // indirect
2222
github.com/godbus/dbus v0.0.0-20181025153459-66d97aec3384 // indirect
2323
github.com/gofrs/uuid v3.2.0+incompatible

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ github.com/docker/go-units v0.3.3 h1:Xk8S3Xj5sLGlG5g67hJmYMmUgXv5N4PhkjJHHqrwnTk
4646
github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
4747
github.com/firecracker-microvm/firecracker-go-sdk v0.17.0 h1:k0Nj15aYbuuJ3nP8yUDWvQKqAoQgxUXtw6go8RLFP4k=
4848
github.com/firecracker-microvm/firecracker-go-sdk v0.17.0/go.mod h1:QcNsz2gYkcTI/zAQl3dYeLwf7KxtjKnt7aGklhn9yYk=
49+
github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20190813001757-92286fa36514 h1:H9nj1BJGPH2HQidBQ98v7b9dOz9J206vQg1Z8k4+0ag=
50+
github.com/firecracker-microvm/firecracker-go-sdk v0.17.1-0.20190813001757-92286fa36514/go.mod h1:QcNsz2gYkcTI/zAQl3dYeLwf7KxtjKnt7aGklhn9yYk=
4951
github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb h1:D4uzjWwKYQ5XnAvUbuvHW93esHg7F8N/OYeBBcJoTr0=
5052
github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q=
5153
github.com/go-ole/go-ole v1.2.4 h1:nNBDSCOigTSiarFpYE9J/KtEA1IOW4CNeqT9TQDqCxI=

proto/events.pb.go

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

proto/firecracker.pb.go

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

proto/firecracker.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ message CreateVMRequest {
3232

3333
// Whether the VM should exit after all tasks running in it have been deleted.
3434
bool ExitAfterAllTasksDeleted = 9;
35+
36+
// Determines whether or not the jailer should be disabled.
37+
//
38+
// Valid values are "ON", "OFF"
39+
string Jailing = 10;
3540
}
3641

3742
message StopVMRequest {

0 commit comments

Comments
 (0)