Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chartbeat-labs/puppet-confluent-kafka
Unofficial puppet module for managing confluent's kafka distribution
https://github.com/chartbeat-labs/puppet-confluent-kafka
Last synced: about 2 months ago
JSON representation
Unofficial puppet module for managing confluent's kafka distribution
- Host: GitHub
- URL: https://github.com/chartbeat-labs/puppet-confluent-kafka
- Owner: chartbeat-labs
- License: mit
- Created: 2015-04-28T16:44:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-23T18:34:18.000Z (11 months ago)
- Last Synced: 2024-05-21T01:07:42.577Z (7 months ago)
- Language: Puppet
- Homepage:
- Size: 73.2 KB
- Stars: 2
- Watchers: 7
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.markdown
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
#### Table of Contents
1. [Overview](#overview)
2. [Module Description - What the module does and why it is useful](#module-description)
3. [Setup - The basics of getting started with confluent_kafka](#setup)
* [What confluent_kafka affects](#what-confluent_kafka-affects)
* [Setup requirements](#setup-requirements)
* [Beginning with confluent_kafka](#beginning-with-confluent_kafka)
4. [Usage - Configuration options and additional functionality](#usage)
5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)
5. [Limitations - OS compatibility, etc.](#limitations)
6. [Development - Guide for contributing to the module](#development)## Overview
Unofficial module for install and managing Confluent's (http://confluent.io/) distribution of Kafka.
Currently only tested on Ubuntu 12.04
[![Build Status](https://travis-ci.org/chartbeat-labs/puppet-confluent-kafka.svg)](https://travis-ci.org/chartbeat-labs/puppet-confluent-kafka)
## 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
```puppet
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
```puppet
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