Repository: mesos Updated Branches: refs/heads/master d46e1aed7 -> 661302966
Add volume driver plugin to mesos v1 proto. Review: https://reviews.apache.org/r/40888 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/66130296 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/66130296 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/66130296 Branch: refs/heads/master Commit: 6613029663719fb9798112e2f7f008f6cf54546c Parents: 3dd8bdf Author: Gilbert Song <[email protected]> Authored: Tue Dec 8 04:00:30 2015 +0100 Committer: Till Toenshoff <[email protected]> Committed: Tue Dec 8 04:12:45 2015 +0100 ---------------------------------------------------------------------- include/mesos/v1/mesos.proto | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/66130296/include/mesos/v1/mesos.proto ---------------------------------------------------------------------- diff --git a/include/mesos/v1/mesos.proto b/include/mesos/v1/mesos.proto index 7e96512..8f357b0 100644 --- a/include/mesos/v1/mesos.proto +++ b/include/mesos/v1/mesos.proto @@ -1505,6 +1505,9 @@ message ContainerInfo { // pull the docker image from the registry even if the image // is already downloaded on the agent. optional bool force_pull_image = 6; + + // The name of volume driver plugin. + optional string volume_driver = 7; } message MesosInfo {
