Return-Path: X-Original-To: apmail-brooklyn-commits-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 83AC51181B for ; Mon, 9 Jun 2014 02:05:40 +0000 (UTC) Received: (qmail 48528 invoked by uid 500); 9 Jun 2014 02:05:38 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 48485 invoked by uid 500); 9 Jun 2014 02:05:38 -0000 Mailing-List: contact commits-help@brooklyn.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.incubator.apache.org Delivered-To: mailing list commits@brooklyn.incubator.apache.org Received: (qmail 48444 invoked by uid 99); 9 Jun 2014 02:05:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Jun 2014 02:05:38 +0000 X-ASF-Spam-Status: No, hits=-2000.7 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 09 Jun 2014 02:05:37 +0000 Received: (qmail 44376 invoked by uid 99); 9 Jun 2014 02:05:17 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Jun 2014 02:05:17 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 489848B22D2; Mon, 9 Jun 2014 02:05:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: richard@apache.org To: commits@brooklyn.incubator.apache.org Date: Mon, 09 Jun 2014 02:05:17 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/5] git commit: added reference for chef yaml as per @andreaturli's suggestion X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-brooklyn Updated Branches: refs/heads/master ab3e2974f -> b92d03925 added reference for chef yaml as per @andreaturli's suggestion Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/a7f956dc Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/a7f956dc Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/a7f956dc Branch: refs/heads/master Commit: a7f956dc83565b60b9630f9f189d0e01eeab9f2e Parents: 17ee8c7 Author: Alex Heneveld Authored: Thu May 29 18:34:29 2014 +0100 Committer: Alex Heneveld Committed: Mon Jun 2 12:20:06 2014 +0100 ---------------------------------------------------------------------- .../guide/defining-applications/chef-blueprints.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/a7f956dc/docs/use/guide/defining-applications/chef-blueprints.md ---------------------------------------------------------------------- diff --git a/docs/use/guide/defining-applications/chef-blueprints.md b/docs/use/guide/defining-applications/chef-blueprints.md index 8160fb0..274ce9e 100644 --- a/docs/use/guide/defining-applications/chef-blueprints.md +++ b/docs/use/guide/defining-applications/chef-blueprints.md @@ -213,3 +213,17 @@ Much of the thinking for this is set forth in the [Google document](https://docs indicated earlier. If you'd like to work with us to implement these, please let us know. +## Reference + +A general schema for the supported YAML is below: + +``` +- type: chef:cookbook_name + cookbook_urls: + cookbook_name: url://for/cookbook.tgz + dependency1: url://for/dependency1.tgz + launch_run_list: [ "cookbook_name::start" ] + launch_attributes: # map of arguments to set in the chef node + service_name: cookbook_service + pid_file: /var/run/cookbook.pid +```