proto: make container.proto compile
Replaced tags with owner. This assumes we will provide a Metadata endpoint since we're planning on using it for distribution. Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
This commit is contained in:
parent
f8e7d65b18
commit
6c7b4b4c17
2 changed files with 97 additions and 17 deletions
|
@ -16,7 +16,7 @@ service Containers {
|
||||||
rpc CreateProcess(CreateProcessRequest) returns (CreateProcessResponse);
|
rpc CreateProcess(CreateProcessRequest) returns (CreateProcessResponse);
|
||||||
rpc StartProcess(StartProcessRequest) returns (StartProcessResponse);
|
rpc StartProcess(StartProcessRequest) returns (StartProcessResponse);
|
||||||
rpc ProcessState(ProcessStateRequest) returns (ProcessStateResponse);
|
rpc ProcessState(ProcessStateRequest) returns (ProcessStateResponse);
|
||||||
rpc SignalProcess(SignalProcessRequest) returns (SignalProcessResponse)
|
rpc SignalProcess(SignalProcessRequest) returns (SignalProcessResponse);
|
||||||
rpc DeleteProcess(DeleteProcessRequest) returns (DeleteProcessResponse);
|
rpc DeleteProcess(DeleteProcessRequest) returns (DeleteProcessResponse);
|
||||||
rpc ProcessList(ProcessListRequest) returns (ProcessListResponse);
|
rpc ProcessList(ProcessListRequest) returns (ProcessListResponse);
|
||||||
|
|
||||||
|
@ -26,17 +26,17 @@ service Containers {
|
||||||
message Container {
|
message Container {
|
||||||
string id = 1;
|
string id = 1;
|
||||||
repeated Mount mounts = 2;
|
repeated Mount mounts = 2;
|
||||||
repeated string tags = 3;
|
string owner = 3;
|
||||||
Process process = 4;
|
Process process = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Process {
|
message Process {
|
||||||
uint64 pid = 1;
|
uint64 pid = 1;
|
||||||
repeated string args = 1;
|
repeated string args = 2;
|
||||||
repeated string env = 2;
|
repeated string env = 3;
|
||||||
User user = 3;
|
User user = 4;
|
||||||
string cwd = 4;
|
string cwd = 5;
|
||||||
bool terminal = 5;
|
bool terminal = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ProcessSpec {
|
message ProcessSpec {
|
||||||
|
@ -51,21 +51,24 @@ message ProcessSpec {
|
||||||
}
|
}
|
||||||
|
|
||||||
message Mount {
|
message Mount {
|
||||||
|
string source = 1;
|
||||||
|
string target = 2;
|
||||||
|
string type = 3;
|
||||||
|
repeated string options = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message User {
|
message User {
|
||||||
uint32 uid = 1;
|
uint32 uid = 1;
|
||||||
uint32 gid = 2;
|
uint32 gid = 2;
|
||||||
repeated uint32 additionalGids = 3;
|
repeated uint32 additionalGids = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message CreateRequest {
|
message CreateRequest {
|
||||||
string id = 1;
|
string id = 1;
|
||||||
ProcessSpec process = 2;
|
ProcessSpec process = 2;
|
||||||
repeated Mount mounts = 3;
|
repeated Mount mounts = 3;
|
||||||
repeated string tags = 4;
|
string owner = 4;
|
||||||
optional string config_path = 5;
|
string config_path = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message CreateResponse {
|
message CreateResponse {
|
||||||
|
@ -76,6 +79,9 @@ message StartRequest {
|
||||||
string id = 1;
|
string id = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message State {
|
||||||
|
}
|
||||||
|
|
||||||
message StartResponse {
|
message StartResponse {
|
||||||
State state = 1;
|
State state = 1;
|
||||||
}
|
}
|
||||||
|
@ -85,11 +91,10 @@ message DeleteRequest {
|
||||||
}
|
}
|
||||||
|
|
||||||
message DeleteResponse {
|
message DeleteResponse {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message ListContainerRequest {
|
message ContainerListRequest {
|
||||||
repeated string tags = 1;
|
repeated string owner = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ContainerListResponse {
|
message ContainerListResponse {
|
||||||
|
@ -103,3 +108,80 @@ message StateRequest {
|
||||||
message StateResponse {
|
message StateResponse {
|
||||||
Container container = 1;
|
Container container = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message UpdateRequest {
|
||||||
|
string id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message UpdateResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message PauseRequest {
|
||||||
|
string id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message PauseResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message ResumeRequest {
|
||||||
|
string id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ResumeResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message CreateProcessRequest {
|
||||||
|
string id = 1;
|
||||||
|
ProcessSpec spec = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message CreateProcessResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message StartProcessRequest {
|
||||||
|
string cid = 1;
|
||||||
|
string pid = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message StartProcessResponse {
|
||||||
|
uint32 pid = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ProcessStateRequest {
|
||||||
|
string cid = 1;
|
||||||
|
string pid = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ProcessStateResponse {
|
||||||
|
State state = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SignalProcessRequest {
|
||||||
|
string cid = 1;
|
||||||
|
string pid = 2;
|
||||||
|
uint32 signal = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SignalProcessResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message DeleteProcessRequest {
|
||||||
|
string cid = 1;
|
||||||
|
string pid = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message DeleteProcessResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message ProcessListRequest {
|
||||||
|
string id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ProcessListResponse {
|
||||||
|
}
|
||||||
|
|
||||||
|
message EventsRequest {
|
||||||
|
}
|
||||||
|
|
||||||
|
message EventsResponse {
|
||||||
|
}
|
||||||
|
|
|
@ -59,9 +59,7 @@ var runCommand = cli.Command{
|
||||||
Stdout: os.Stdout.Name(),
|
Stdout: os.Stdout.Name(),
|
||||||
Stderr: os.Stderr.Name(),
|
Stderr: os.Stderr.Name(),
|
||||||
},
|
},
|
||||||
Tags: []string{
|
Owner: "ctr",
|
||||||
"ctr",
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
defer client.Containers.Delete(container)
|
defer client.Containers.Delete(container)
|
||||||
if err := client.Networks.Attach(config.Network, container); err != nil {
|
if err := client.Networks.Attach(config.Network, container); err != nil {
|
||||||
|
|
Loading…
Reference in a new issue