Version information
released Feb 18th 2015
Start using this module
Add this module to your Puppetfile:
mod 'whisklabs-kafka', '0.0.6'
Learn more about managing modules with a PuppetfileDocumentation
whisklabs/kafka — version 0.0.6 Feb 18th 2015
#puppet-kafka
A puppet module for Apache Kafka setup.
Basic Usage
node 'kafka-0' {
include java
class { 'kafka':
broker_id => '0',
hostname => $::ipaddress_eth1, # $::ipaddress is picked by default
zookeeper_connect => 'localhost:2181',
package_url => 'http://mirror.symnds.com/software/Apache/kafka/0.8.1.1/kafka_2.10-0.8.1.1.tgz'
}
}
Parameters
broker_id
- cluster-unique Kafka broker idhostname
- the hostname to bind. expected to be available for other brokers and clientszookeeper_connect
- zookeeper connection stringpackage_url
- might use http, ftp, puppet or file schemestatsd_host
- the statsd hostnamestatsd_port
- the statsd portstatsd_exclude_regex
- the statsd exclude.regex eg. (?!(AllTopicsBytesInPerSec|AllTopicsBytesOutPerSec|AllTopicsMessagesInPerSec|AllTopicsFailedProduceRequestsPerSec)).+
Source Code
Dependencies
- puppetlabs/java (>= 1.0.0)