Puppet Class: hbase::restserver
- Defined in:
- manifests/restserver.pp
Overview
Class hbase::restserver
HBase REST Server. 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/restserver.pp', line 5
class hbase::restserver {
include 'hbase::restserver::install'
include 'hbase::restserver::config'
include 'hbase::restserver::service'
Class['hbase::restserver::install']
-> Class['hbase::restserver::config']
~> Class['hbase::restserver::service']
-> Class['hbase::restserver']
}
|