Repository: bigtop Updated Branches: refs/heads/master bce41ca81 -> 3f723b7d0
BIGTOP-2974: Add puppet code to deploy SparkR package Signed-off-by: Evans Ye <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/3f723b7d Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/3f723b7d Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/3f723b7d Branch: refs/heads/master Commit: 3f723b7d01ee2c8bbcacce8302e1fc9a7fed6905 Parents: bce41ca Author: Youngwoo Kim <[email protected]> Authored: Wed Dec 27 14:24:36 2017 +0900 Committer: Evans Ye <[email protected]> Committed: Wed Jan 31 21:46:18 2018 +0800 ---------------------------------------------------------------------- bigtop-deploy/puppet/modules/spark/manifests/init.pp | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/3f723b7d/bigtop-deploy/puppet/modules/spark/manifests/init.pp ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/modules/spark/manifests/init.pp b/bigtop-deploy/puppet/modules/spark/manifests/init.pp index 6fe23dc..7de95a1 100644 --- a/bigtop-deploy/puppet/modules/spark/manifests/init.pp +++ b/bigtop-deploy/puppet/modules/spark/manifests/init.pp @@ -43,6 +43,7 @@ class spark { class client { include spark::common + include spark::sparkr package { 'spark-python': ensure => latest, @@ -134,6 +135,12 @@ class spark { } } + class sparkr { + package { 'spark-sparkr': + ensure => latest, + } + } + class common( $master_url = undef, $master_host = $fqdn,
