Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DDEEB200B2F for ; Sun, 3 Jul 2016 20:20:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DC72A160A6B; Sun, 3 Jul 2016 18:20:12 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 274F2160A50 for ; Sun, 3 Jul 2016 20:20:12 +0200 (CEST) Received: (qmail 24271 invoked by uid 500); 3 Jul 2016 18:20:11 -0000 Mailing-List: contact issues-help@mesos.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mesos.apache.org Delivered-To: mailing list issues@mesos.apache.org Received: (qmail 24261 invoked by uid 99); 3 Jul 2016 18:20:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jul 2016 18:20:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id E56202C0003 for ; Sun, 3 Jul 2016 18:20:10 +0000 (UTC) Date: Sun, 3 Jul 2016 18:20:10 +0000 (UTC) From: "Jie Yu (JIRA)" To: issues@mesos.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (MESOS-5775) Add a new CVMFS image type. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 03 Jul 2016 18:20:13 -0000 Jie Yu created MESOS-5775: ----------------------------- Summary: Add a new CVMFS image type. Key: MESOS-5775 URL: https://issues.apache.org/jira/browse/MESOS-5775 Project: Mesos Issue Type: Task Reporter: Jie Yu One way to specify a CVMFS image is like the following. Using a combination of repository name and the path to the image in the repository. If we were to support CVMFS image using a catalog, we needed to think about what's the best way to express that. Maybe we should make `Cvmfs` message more extensible with that in mind. {code} message Image { enum Type { APPC = 1; DOCKER = 2; CVMFS = 3; } message Cvmfs { required string repository = 1; required string path = 2; } optional Cvmfs cvmfs = 5; } {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)