Puppet Class: cloudera::cdh5::bigtop

Defined in:
manifests/cdh5/bigtop.pp

Overview

Class: cloudera::cdh5::bigtop

This class installs the BigTop packages.

Parameters:

Actions:

Requires:

Sample Usage:

class { 'cloudera::cdh5::bigtop': }

Authors:

Mike Arnold <mike@razorsedge.org>

Copyright © 2013 Mike Arnold, unless otherwise noted.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'manifests/cdh5/bigtop.pp', line 23

class cloudera::cdh5::bigtop {
  package { 'bigtop-jsvc':
    ensure => 'present',
    tag    => 'cloudera-cdh5',
  }

  package { 'bigtop-tomcat':
    ensure => 'present',
    tag    => 'cloudera-cdh5',
  }

  package { 'bigtop-utils':
    ensure => 'present',
    tag    => 'cloudera-cdh5',
  }
}