Puppet Class: role::analytics_test_cluster::hadoop::worker

Defined in:
modules/role/manifests/analytics_test_cluster/hadoop/worker.pp

Overview

Class role::analytics_test_cluster::hadoop::worker



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'modules/role/manifests/analytics_test_cluster/hadoop/worker.pp', line 3

class role::analytics_test_cluster::hadoop::worker {
    system::role { 'analytics_test_cluster::hadoop::worker':
        description => 'Hadoop Worker (DataNode & NodeManager)',
    }

    include ::profile::java
    include ::profile::hadoop::worker
    include ::profile::hadoop::worker::clients
    # This is a Hadoop client, and should
    # have any service system users it needs to
    # interacting with HDFS.
    include ::profile::analytics::cluster::users
    include ::profile::kerberos::client
    include ::profile::kerberos::keytabs
    include ::profile::firewall
    include ::profile::base::production
}