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

mesos git commit: Added credential to Docker image protobuf.

Repository: mesos
Updated Branches:
  refs/heads/master fafbdca61 -> 929ddb777


Added credential to Docker image protobuf.

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


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

Branch: refs/heads/master
Commit: 929ddb7778953c0eee7335c9826ee987d07af6b6
Parents: fafbdca
Author: Timothy Chen <tn...@apache.org>
Authored: Fri Jan 8 13:33:27 2016 -0800
Committer: Timothy Chen <tn...@apache.org>
Committed: Fri Jan 8 17:06:09 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/929ddb77/include/mesos/mesos.proto
----------------------------------------------------------------------
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 2431fdd..74e9d00 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -1314,6 +1314,11 @@ message Image {
     //
     // See: https://docs.docker.com/reference/commandline/pull/
     required string name = 1;
+
+    // Credential to authenticate with docker registry.
+    // NOTE: This is not encrypted, therefore framework and operators
+    // should enable SSL when passing this information.
+    optional Credential credential = 2;
   }
 
   required Type type = 1;