Version information
released Jan 23rd 2024
This version is compatible with:
Start using this module
Add this module to your Puppetfile:
mod 'chartbeat-confluent_kafka', '0.5.3'
Learn more about managing modules with a PuppetfileDocumentation
chartbeat/confluent_kafka — version 0.5.3 Jan 23rd 2024
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with confluent_kafka
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
Unofficial module for install and managing Confluent's (http://confluent.io/) distribution of Kafka.
Currently only tested on Ubuntu 12.04
Module Description
Module that manages the installation and configuration of Confluent's distribution of Kafka. Currently only supports brokers
Setup
What confluent_kafka affects
- Installs Kafka package, service and java if specified
Beginning with confluent_kafka
class { 'confluent_kafka': }
Usage
###Classes
####Class: confluent_kafka
Main class for the module, will install the package
###Types:
####Type: confluent_kafka::topic
Create/Delete topic in cluster
confluent_kafka::topic { 'topic_name':
ensure => present,
replication_factor => 3,
partitions => 16,
}
Reference
###Classes ####Public Classes
- [
confluent_kafka
]
####Private Classes
- [
confluent_kafka::config
] - [
confluent_kafka::install
] - [
confluent_kafka::service
] - [
confluent_kafka::params
]
Limitations
This module is tested on the following platforms:
- Ubuntu 12.04
2024-01-23 Release 0.5.3
- Add support for installing platform version 6+
- Make apt key ID configurable
2016-11-08 Release 0.5.2
- Fix bug in apt-get update, dont run on every puppet run
2016-07-21 Release 0.5.1
- Fix regression introduced in previous release with platform handling
- Add test coverage
2016-06-21 Release 0.5.0
- Updated for Confluent Platform 2
2015-07-23 Release 0.4.0
- Add support for puppetlabs/apt >=2.0.0
- Remove support for ruby 1.8.7 and puppet 2.7
- Cleanup travis matrix
2015-04-28 Release 0.3.0
- Ensure log env variables are exported so they are picked up by startup scripts
2015-04-28 Release 0.2.0
- Fix issues with metadata.json preventing install
2015-04-28 Release 0.1.0
- Initial release
Dependencies
- puppetlabs-stdlib (>= 4.5.1)
- puppetlabs-apt (>= 2.0.0)
The MIT License (MIT) Copyright (c) 2015 chartbeat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.