Puppet Class: role::analytics_test_cluster::hadoop::ui

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

Overview

Class: role::analytics_test_cluster::hadoop::ui

Hadoop GUIs. Currently the yarn resourcemanager web interface.



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

class role::analytics_test_cluster::hadoop::ui {
    system::role { 'analytics_cluster::hadoop::ui':
        description => 'Hadoop GUIs: Hue and Yarn ResourceManager web interfaces'
    }

    include ::profile::java

    # Test cluster setup uses LDAP (in contrast to the prod setup with CAS)
    include ::profile::hadoop::yarn_proxy_testcluster

    include ::profile::kerberos::client
    include ::profile::kerberos::keytabs

    include ::profile::firewall
    include ::profile::base::production
}