No commit activity in last 3 years
No release in over 3 years
Itamae plugin to install kafka
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.15
~> 10.0
~> 3.0

Runtime

 Project Readme

Itamae::Plugin::Recipe::Kafka

Gem Version wercker status

Itamae plugin to install kafka

Installation

Add this line to your application's Gemfile:

gem 'itamae-plugin-recipe-kafka'

And then execute:

$ bundle

Or install it yourself as:

$ gem install itamae-plugin-recipe-kafka

Usage

Recipe

# your recipe
include_recipe "kafka::install"

Node

# node.yml
scala:
  # target scala version
  # see: https://github.com/ohr486/itamae-plugin-recipe-scala
  version: 2.12.3

kafka:
  # target kafka version
  version: 1.0.0
  # target scala major.minor version
  kafka_scala_version: 2.12
  config:
    zookeeper:
      host: your.zookeeper.host
      port: 2181
    kafka:
      # kafka server config
      host-name1:
        id: 1
        host: your.kafka.host1
        port: 9091
      host-name2:
        id: 2
        host: your.kafka.host2
        port: 9092
      host-name3:
        id: 3
        host: your.kafka.host3
        port: 9093
      ...

Testing

requirements Vagrant

bundle exec rake itamae:default
bundle exec rake spec:default

License

The gem is available as open source under the terms of the MIT License.