Puppet Class: hbase::master
- Defined in:
- manifests/master.pp
Overview
Class hbase::master
HBase Master. Meant to be included to particular nodes. Declaration of the main hbase class with configuration is required.
5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/master.pp', line 5
class hbase::master {
include 'hbase::master::install'
include 'hbase::master::config'
include 'hbase::master::service'
Class['hbase::master::install']
-> Class['hbase::master::config']
~> Class['hbase::master::service']
-> Class['hbase::master']
}
|