cassandra
Puppet module to install Apache Cassandra from the DataStax distribution. Forked from gini/cassandra
Version information
released Feb 9th 2015
Start using this module
Add this module to your Puppetfile:
mod 'msimonin-cassandra', '0.8.1'
Learn more about managing modules with a PuppetfileDocumentation
msimonin/cassandra — version 0.8.1 Feb 9th 2015
Puppet Cassandra module (DSC)
Overview
Install Apache Cassandra from the DataStax Community Edition.
Usage (from the test directory)
node 'seed1' {
class { 'cassandra':
cluster_name => 'testCassandra',
package_name => 'cassandra',
seeds => [ '192.168.100.2'],
version => '2.0.10',
listen_address => "192.168.100.2"
}
}
node 'node1' {
class { 'cassandra':
cluster_name => 'testCassandra',
package_name => 'cassandra',
seeds => [ '192.168.100.2'],
version => '2.0.10',
listen_address => "192.168.100.3"
}
}
Supported Platforms
The module has been tested on the following operating systems. Testing and patches for other platforms are welcome.
- Debian Linux 7.0 (Wheezy)
Support
Please create bug reports and feature requests in GitHub issues.
License
Copyright (c) 2012-2013 smarchive GmbH, 2013 Gini GmbH
This script is licensed under the Apache License, Version 2.0.
0.8.1
- changelog fix
0.8.0
- fix repo containment (https://github.com/msimonin/puppet-cassandra/pull/9)
- default dsc package is dsc21 (https://github.com/msimonin/puppet-cassandra/pull/13)
- fix internal variable names (https://github.com/msimonin/puppet-cassandra/pull/16)
0.7.2
- Fix cassandra 2.1.2 support
0.7.1
- Fix cassandra 2.0.x support
0.7.0
- Cassandra 2 (up to 2.0.10) support
- Increase default thread_stack_size
- Conditional java installation
0.6.0
- Install java 7 - openjdk -
- Fix specific version request of dsc package
0.5.0
- Fix key id in apt::source
Dependencies
- puppetlabs/stdlib (>= 3.0.0)
- puppetlabs/apt (1.x)