Puppet Class: role::analytics_cluster::hadoop::client
- Defined in:
- modules/role/manifests/analytics_cluster/hadoop/client.pp
Overview
Class role::analytics_cluster::hadoop::client
Simple role class that only includes a hadoop client.
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'modules/role/manifests/analytics_cluster/hadoop/client.pp', line 4
class role::analytics_cluster::hadoop::client {
system::role { 'analytics_cluster::hadoop::client':
description => 'Hadoop client',
}
include ::profile::base::production
include ::profile::firewall
include ::profile::java
include ::profile::hadoop::common
include ::profile::kerberos::client
include ::profile::kerberos::keytabs
}
|