Skip to content

Commit

Permalink
Update files for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Pijnenburg committed Sep 6, 2013
1 parent f0a68b6 commit 0bcb89e
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.1.3 ( Sep 06, 2013 )
Exec path settings has been updated to fix warnings ( PR #37, #47 )
Adding define to install python bindings ( PR #43 )
Scope deprecation fixes ( PR #41 )
feature to install plugins ( PR #40 )

0.1.2 ( Jun 21, 2013 )
Update rake file to ignore the param inherit
Added missing documentation to the template define
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ Brian Lalor (blalor)
Stas Alekseev (salekseev)
Simon Effenberg (Savar)
Bruce Morrison (brucem)
deanmalmgren
Matteo Sessa (msessa-cotd)
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'ispavailability-elasticsearch'
version '0.1.2'
version '0.1.3'
source 'https://github.com/electrical/puppet-elasticsearch'
author 'ispavailability'
license 'Apache License, Version 2.0'
Expand Down
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A puppet module for managing elasticsearch nodes

http://www.elasticsearch.org/

[![Build Status](https://travis-ci.org/electrical/puppet-elasticsearch.png?branch=master)](https://travis-ci.org/electrical/puppet-elasticsearch)
[![Build Status](https://travis-ci.org/elasticsearch/puppet-elasticsearch.png?branch=master)](https://travis-ci.org/elasticsearch/puppet-elasticsearch)

## Usage

Expand All @@ -15,7 +15,7 @@ Installation, make sure service is running and will be started at boot time:
Install a certain version:

class { 'elasticsearch':
version => '0.20.6'
version => '0.90.3'
}

Removal/decommissioning:
Expand Down Expand Up @@ -121,8 +121,27 @@ You can populate the defaults file ( /etc/defaults/elasticsearch or /etc/sysconf
port => 9200
}

### Bindings / clients
## Bindings / clients

Install [a variety of python bindings](http://www.elasticsearch.org/guide/clients/):

elasticsearch::python { "rawes": }


## Plugins

Install [a variety of plugins](http://www.elasticsearch.org/guide/clients/):

### From official repository:

elasticsearch::plugin{'mobz/elasticsearch-head':
module_dir => 'head'
}

### From custom url:

elasticsearch::plugin{ 'elasticsearch-jetty':
module_dir => 'elasticsearch-jetty',
url => 'https://oss-es-plugins.s3.amazonaws.com/elasticsearch-jetty/elasticsearch-jetty-0.90.0.zip'
}

0 comments on commit 0bcb89e

Please sign in to comment.