-
Notifications
You must be signed in to change notification settings - Fork 107
Create
Creates a new container.
All parameters are optional.
-
bind_mounts: Contains the paths that should be mounted in the container's filesystem. Thesrc_pathfield for every bind mount holds the path as seen from the host, where thedst_pathfield holds the path as seem from the container. -
grace_time: Can be used to specify how long a container can go unreferenced by any client connection. After this time, the container will automatically be destroyed. If not specified, the container will be subject to the globally configured grace time. -
handle: If specified, its value must be used to refer to the container in future requests. If it is not specified, warden uses its internal container ID as the container handle.
TODO:
networkandrootfs
The handle field contains the handle that must be used to refer to the
container in future request. It is the same as the handle field in the
request, if it was passed.
- When the
handle, if specified, is already taken. - When one of the
bind_mountpaths does not exist. - When resource allocations fail (subnet, user ID, etc).
package warden;
message CreateRequest {
message BindMount {
enum Mode {
RO = 0;
RW = 1;
}
required string src_path = 1;
required string dst_path = 2;
required Mode mode = 3;
}
repeated BindMount bind_mounts = 1;
optional uint32 grace_time = 2;
optional string handle = 3;
optional string network = 4;
optional string rootfs = 5;
}
message CreateResponse {
required string handle = 1;
}