Return-Path: X-Original-To: apmail-whirr-dev-archive@www.apache.org Delivered-To: apmail-whirr-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E60268DEF for ; Thu, 15 Sep 2011 19:37:30 +0000 (UTC) Received: (qmail 46470 invoked by uid 500); 15 Sep 2011 19:37:30 -0000 Delivered-To: apmail-whirr-dev-archive@whirr.apache.org Received: (qmail 46396 invoked by uid 500); 15 Sep 2011 19:37:30 -0000 Mailing-List: contact dev-help@whirr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@whirr.apache.org Delivered-To: mailing list dev@whirr.apache.org Received: (qmail 46385 invoked by uid 99); 15 Sep 2011 19:37:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2011 19:37:30 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2011 19:37:29 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 21A579BA8B for ; Thu, 15 Sep 2011 19:37:09 +0000 (UTC) Date: Thu, 15 Sep 2011 19:37:09 +0000 (UTC) From: "Chad Metcalf (JIRA)" To: dev@whirr.apache.org Message-ID: <1491784071.32171.1316115429134.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <762007463.22344.1315927809784.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Issue Comment Edited] (WHIRR-385) Implement support for using nodeless, masterless Puppet to provision and run scripts MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/WHIRR-385?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13105628#comment-13105628 ] Chad Metcalf edited comment on WHIRR-385 at 9/15/11 7:35 PM: ------------------------------------------------------------- Another snag though easier to fix is that currently we don't support arrays for these. For example using the ntp module... {code} ntp.servers=10.0.0.1 {code} Works expanding to: {code} class {'ntp': servers => '10.0.0.1', } {code} But there is no way to give an array. {code} ntp.servers=[10.0.0.1, 10.0.0.2] #or ntp.servers=10.0.0.1, 10.0.0.2 {code} Expands to: {code} class {'ntp': servers => '[10.0.0.1, 10.0.0.2]', } #or class {'ntp': servers => '10.0.0.1, 10.0.0.2', } {code} We probably should either: # take csv and convert to {{["foo", "bar", "baz"]}} though it makes single element arrays annoying # do no quoting and the user specifies the exact string to be used I'm for 2 since its easier, more general and probably less error prone. was (Author: metcalfc): Another snag though easier to fix is that currently we don't support arrays for these. For example using the ntp module... {code} ntp.servers=10.0.0.1 {code} Works expanding to: {code} class {'ntp': servers => '10.0.0.1', } {code} But there is no way to give an array. {code} ntp.servers=[10.0.0.1, 10.0.0.2] #or ntp.servers=10.0.0.1, 10.0.0.2 {code} Expands to: {code} class {'ntp': servers => '[10.0.0.1, 10.0.0.2]', } #or class {'ntp': servers => '10.0.0.1, 10.0.0.2', } {code} We probably should either: #take csv and convert to {{["foo", "bar", "baz"]}} though it makes single element arrays annoying #do no quoting and the user specifies the exact string to be used I'm for 2 since its easier, more general and probably less error prone. > Implement support for using nodeless, masterless Puppet to provision and run scripts > ------------------------------------------------------------------------------------ > > Key: WHIRR-385 > URL: https://issues.apache.org/jira/browse/WHIRR-385 > Project: Whirr > Issue Type: New Feature > Components: new service > Affects Versions: 0.7.0 > Reporter: Alex Heneveld > Attachments: WHIRR-385.patch, WHIRR-385.patch > > Original Estimate: 168h > Remaining Estimate: 168h > > As a user of Whirr, I'd like to be able to use puppet scripts (manifests, modules) from within Whirr to set up machines and clusters, because there are a lot of OS-neutral capabilities and a large number of actively maintained scripts which I could benefit from. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira