elasticsearch
Version information
Start using this module
Add this module to your Puppetfile:
mod 'ispavailability-elasticsearch', '0.1.3'
Learn more about managing modules with a PuppetfileDocumentation
puppet-elasticsearch
A puppet module for managing elasticsearch nodes
Usage
Installation, make sure service is running and will be started at boot time:
class { 'elasticsearch': }
Install a certain version:
class { 'elasticsearch':
version => '0.90.3'
}
Removal/decommissioning:
class { 'elasticsearch':
ensure => 'absent',
}
Install everything but disable service(s) afterwards:
class { 'elasticsearch':
status => 'disabled',
}
Disable automated restart of Elasticsearch on config file change:
class { 'elasticsearch':
restart_on_change => false
}
For the config variable a hash needs to be passed:
class { 'elasticsearch':
config => {
'node' => {
'name' => 'elasticsearch001'
},
'index' => {
'number_of_replicas' => '0',
'number_of_shards' => '5'
},
'network' => {
'host' => $::ipaddress
}
}
}
Short write up of the config hash is also possible.
Instead of writing the full hash representation:
class { 'elasticsearch':
config => {
'cluster' => {
'name' => 'ClusterName',
'routing' => {
'allocation' => {
'awareness' => {
'attributes' => 'rack'
}
}
}
}
}
}
You can write the dotted key naming:
class { 'elasticsearch':
config => {
'cluster' => {
'name' => 'ClusterName',
'routing.allocation.awareness.attributes' => 'rack'
}
}
}
Defaults file
You can populate the defaults file ( /etc/defaults/elasticsearch or /etc/sysconfig/elasticsearch )
class { 'elasticsearch':
service_settings => { 'ES_USER' => 'elasticsearch', 'ES_GROUP' => 'elasticsearch' }
}
Manage templates
Add a new template
elasticsearch::template { 'templatename':
file => 'puppet:///path/to/template.json'
}
Delete a template
elasticsearch::template { 'templatename':
delete => true
}
Replace a template
elasticsearch::template { 'templatename':
file => 'puppet:///path/to/template.json',
replace => true
}
Host
Default it uses localhost:9200 as host. you can change this with the 'host' and 'port' variables
elasticsearch::template { 'templatename':
host => $::ipaddress,
port => 9200
}
Bindings / clients
Install a variety of python bindings:
elasticsearch::python { "rawes": }
Plugins
Install a variety of plugins:
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'
}
Dependencies
- puppetlabs/stdlib (>= 3.0.0)
Copyright 2012-2013 Richard Pijnenburg Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.