This is an automated email from the ASF dual-hosted git repository. gilbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit 408f281458913caa564f66c40e392f61e81f999b Author: Qian Zhang <[email protected]> AuthorDate: Wed Feb 27 22:22:13 2019 -0800 Added `task_supplementary_groups` into `ContainerLaunchInfo`. Review: https://reviews.apache.org/r/69478/ --- include/mesos/slave/containerizer.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/mesos/slave/containerizer.proto b/include/mesos/slave/containerizer.proto index b93b5f4..8de897e 100644 --- a/include/mesos/slave/containerizer.proto +++ b/include/mesos/slave/containerizer.proto @@ -268,6 +268,10 @@ message ContainerLaunchInfo { // TODO(tillt): Remove this once we no longer support the old style // command task (i.e., that uses mesos-execute). optional Environment task_environment = 15; + + // (POSIX only) The supplementary group IDs specific for command task + // with its own rootfs. + repeated uint32 task_supplementary_groups = 20; }
