2016-11-28 23:28:38 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package containerd.v1;
|
|
|
|
|
|
|
|
service Containers {
|
|
|
|
rpc Create(CreateRequest) returns (CreateResponse);
|
|
|
|
rpc Start(StartRequest) returns (StartResponse);
|
|
|
|
rpc Delete(DeleteRequest) returns (DeleteResponse);
|
|
|
|
rpc State(StateRequest) returns (StateResponse);
|
|
|
|
rpc Update(UpdateRequest) returns (UpdateResponse);
|
|
|
|
rpc Pause(PauseRequest) returns (PauseResponse);
|
|
|
|
rpc Resume(ResumeRequest) returns (ResumeResponse);
|
|
|
|
|
2016-11-29 23:36:08 +00:00
|
|
|
rpc ContainerList(ContainerListRequest) returns (ContainerListResponse);
|
|
|
|
|
2016-11-28 23:28:38 +00:00
|
|
|
rpc CreateProcess(CreateProcessRequest) returns (CreateProcessResponse);
|
|
|
|
rpc StartProcess(StartProcessRequest) returns (StartProcessResponse);
|
|
|
|
rpc ProcessState(ProcessStateRequest) returns (ProcessStateResponse);
|
2016-11-29 23:36:08 +00:00
|
|
|
rpc SignalProcess(SignalProcessRequest) returns (SignalProcessResponse)
|
2016-11-28 23:28:38 +00:00
|
|
|
rpc DeleteProcess(DeleteProcessRequest) returns (DeleteProcessResponse);
|
2016-11-29 23:36:08 +00:00
|
|
|
rpc ProcessList(ProcessListRequest) returns (ProcessListResponse);
|
2016-11-28 23:28:38 +00:00
|
|
|
|
|
|
|
rpc Events(EventsRequest) returns (stream EventsResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
message Container {
|
|
|
|
string id = 1;
|
2016-11-29 23:36:08 +00:00
|
|
|
string image = 2;
|
|
|
|
repeated string tags = 3;
|
|
|
|
Process process = 4;
|
|
|
|
optional string container_spec = 5;
|
2016-11-28 23:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Process {
|
|
|
|
repeated string args = 1;
|
|
|
|
repeated string env = 2;
|
|
|
|
User user = 3;
|
|
|
|
string cwd = 4;
|
|
|
|
bool terminal = 5;
|
|
|
|
string stdin = 6;
|
|
|
|
string stdout = 7;
|
|
|
|
string stderr = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Mount {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
message User {
|
|
|
|
uint32 uid = 1;
|
|
|
|
uint32 gid = 2;
|
|
|
|
repeated uint32 additionalGids = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CreateRequest {
|
2016-11-29 23:36:08 +00:00
|
|
|
string id = 1;
|
|
|
|
Process process = 2;
|
|
|
|
repeated Mount mounts = 3;
|
|
|
|
optional string config_path = 4;
|
|
|
|
repeated string tags = 5;
|
2016-11-28 23:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message CreateResponse {
|
2016-11-29 23:36:08 +00:00
|
|
|
Container container = 1;
|
2016-11-28 23:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message StartRequest {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message StartResponse {
|
2016-11-29 23:36:08 +00:00
|
|
|
State state = 1;
|
2016-11-28 23:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteRequest {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteResponse {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-29 23:36:08 +00:00
|
|
|
message ListContainerRequest {
|
|
|
|
repeated string tags = 1;
|
2016-11-28 23:28:38 +00:00
|
|
|
}
|
|
|
|
|
2016-11-29 23:36:08 +00:00
|
|
|
message ContainerListResponse {
|
2016-11-28 23:28:38 +00:00
|
|
|
repeated Container containers = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message StateRequest {
|
|
|
|
string id = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message StateResponse {
|
|
|
|
Container container = 1;
|
|
|
|
}
|