You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2016/01/29 02:26:29 UTC

mesos git commit: Added 'dependencies' message to AppcImageManifest.

Repository: mesos
Updated Branches:
  refs/heads/master 1978f5493 -> 39eeea74e


Added 'dependencies' message to AppcImageManifest.

Review: https://reviews.apache.org/r/42554/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/39eeea74
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/39eeea74
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/39eeea74

Branch: refs/heads/master
Commit: 39eeea74e9e1eb04053886bac5ebc881dc551d32
Parents: 1978f54
Author: Jojy Varghese <jo...@mesosphere.io>
Authored: Thu Jan 28 17:26:12 2016 -0800
Committer: Jie Yu <yu...@gmail.com>
Committed: Thu Jan 28 17:26:26 2016 -0800

----------------------------------------------------------------------
 include/mesos/mesos.proto | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/39eeea74/include/mesos/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index f45795e..194750e 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -1682,4 +1682,13 @@ message AppcImageManifest {
   }
 
   repeated Annotation annotations = 5;
+
+  message Dependency {
+    required string imageName = 1;
+    optional string imageID = 2;
+    repeated Label labels = 3;
+    optional uint64 size = 4;
+  }
+
+  repeated Dependency dependencies = 6;
 }