You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by gi...@apache.org on 2019/04/16 19:19:13 UTC

[mesos] 02/03: Added docker manifest v2s2 config to 'ImageInfo'.

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 c009192158f583d95ecaee9e7555c380372fb18f
Author: Gilbert Song <so...@gmail.com>
AuthorDate: Mon Apr 15 19:10:35 2019 -0700

    Added docker manifest v2s2 config to 'ImageInfo'.
---
 src/slave/containerizer/mesos/provisioner/store.hpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/slave/containerizer/mesos/provisioner/store.hpp b/src/slave/containerizer/mesos/provisioner/store.hpp
index a4ae00e..8ed4ebe 100644
--- a/src/slave/containerizer/mesos/provisioner/store.hpp
+++ b/src/slave/containerizer/mesos/provisioner/store.hpp
@@ -51,6 +51,9 @@ struct ImageInfo
 
   // Appc image manifest.
   Option<::appc::spec::ImageManifest> appcManifest;
+
+  // Path of docker manifest v2 schema2 config.
+  Option<std::string> config;
 };