Puppet Class: confluent::kafka
- Inherits:
 - confluent::params
 
- Defined in:
 - manifests/kafka.pp
 
Overview
Class is used to install the core Kafka packages.
        9 10 11 12 13 14 15 16 17 18 19  | 
      
        # File 'manifests/kafka.pp', line 9
class confluent::kafka (
  String $package_ensure = 'installed',
  String $package_name   = $confluent::params::kafka_package_name
) inherits confluent::params {
  include ::confluent
  package { $package_name:
    ensure => $package_ensure,
    tag    => '__confluent__',
  }
}
       |