This is an automated email from the ASF dual-hosted git repository. qianzhang pushed a commit to branch 1.4.x in repository https://gitbox.apache.org/repos/asf/mesos.git
commit 7e2e044694a69017e28c961a90b9f65e3dc59653 Author: Gilbert Song <[email protected]> AuthorDate: Mon Apr 1 22:42:53 2019 -0700 Added protobuf for docker v2 schema2 config_digest in 'Image'. Review: https://reviews.apache.org/r/70365 --- src/slave/containerizer/mesos/provisioner/docker/message.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/slave/containerizer/mesos/provisioner/docker/message.proto b/src/slave/containerizer/mesos/provisioner/docker/message.proto index 612c591..42fc4fa 100644 --- a/src/slave/containerizer/mesos/provisioner/docker/message.proto +++ b/src/slave/containerizer/mesos/provisioner/docker/message.proto @@ -32,6 +32,10 @@ message Image { // where the root layer's id (no parent layer) is first and the leaf // layer's id is last. repeated string layer_ids = 2; + + // The digest of Docker V2 Schema2 manifest config. Only exists when + // pulling an image via V2 Schema2 manifest. + optional string config_digest = 3; }
