https://github.com/gini/puppet-cassandra
A Puppet module to install Apache Cassandra from the DataStax distribution
https://github.com/gini/puppet-cassandra
Last synced: 9 months ago
JSON representation
A Puppet module to install Apache Cassandra from the DataStax distribution
- Host: GitHub
- URL: https://github.com/gini/puppet-cassandra
- Owner: gini
- Archived: true
- Created: 2012-08-10T12:16:20.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2015-08-28T15:45:29.000Z (almost 11 years ago)
- Last Synced: 2024-04-23T22:19:48.933Z (about 2 years ago)
- Language: Puppet
- Size: 410 KB
- Stars: 24
- Watchers: 14
- Forks: 86
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE-2.0.txt
Awesome Lists containing this project
README
Puppet Cassandra module (DSC)
==========================================
[](http://travis-ci.org/gini/puppet-cassandra)
Overview
--------
Install Apache Cassandra from the [DataStax Community Edition] [1].
[1]: http://planetcassandra.org/
Usage
-----
Simple example:
class { 'cassandra':
cluster_name => 'YourCassandraCluster',
seeds => [ '192.0.2.5', '192.0.2.23', '192.0.2.42', ],
}
If you're running on Amazon EC2 (or a similar environment) you might want to set the `broadcast_address`
and the `endpoint_snitch` accordingly.
class { 'cassandra':
cluster_name => 'YourEc2CassandraCluster',
seeds => [ '192.0.2.5', '192.0.2.23', '192.0.2.42', ],
listen_address => $ec2_local_ipv4,
broadcast_address => $ec2_public_ipv4,
endpoint_snitch => 'Ec2MultiRegionSnitch',
}
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] [2].
[2]: https://github.com/gini/puppet-cassandra/issues
License
-------
Copyright (c) 2012-2013 smarchive GmbH, 2013 Gini GmbH
This script is licensed under the [Apache License, Version 2.0] [3].
[3]: http://www.apache.org/licenses/LICENSE-2.0.html