2017-03-09 06:03:46 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package containerd.v1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "github.com/docker/containerd/api/types/mount/mount.proto";
|
|
|
|
import "github.com/docker/containerd/api/types/descriptor/descriptor.proto";
|
|
|
|
|
|
|
|
service RootFS {
|
|
|
|
rpc Prepare(PrepareRequest) returns (PrepareResponse);
|
2017-03-10 02:11:26 +00:00
|
|
|
rpc InitMounts(InitMountsRequest) returns (MountResponse);
|
|
|
|
rpc Mounts(MountsRequest) returns (MountResponse);
|
2017-03-09 06:03:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message PrepareRequest {
|
|
|
|
repeated containerd.v1.types.Descriptor layers = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message PrepareResponse {
|
|
|
|
string chainid = 1 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false, (gogoproto.customname) = "ChainID"];
|
|
|
|
}
|
|
|
|
|
2017-03-10 02:11:26 +00:00
|
|
|
message InitMountsRequest {
|
|
|
|
string name = 1;
|
|
|
|
string chainID = 2 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false, (gogoproto.customname) = "ChainID"];
|
|
|
|
bool Readonly = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message MountsRequest {
|
|
|
|
string name = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message MountResponse {
|
|
|
|
repeated containerd.v1.types.Mount mounts = 1;
|
|
|
|
}
|