Version information
released Apr 19th 2013
Start using this module
Add this module to your Puppetfile:
mod 'thias-elasticsearch', '0.1.2'
Learn more about managing modules with a PuppetfileDocumentation
thias/elasticsearch — version 0.1.2 Apr 19th 2013
puppet-elasticsearch
Overview
Install, enable and configure Elasticsearch.
elasticsearch
: Main class to install and enable the server
Example Usage
Simple instance with the default configuration :
include elasticsearch
Instance with a few tweaks :
class { 'elasticsearch':
network_bind_host => '192.168.0.1',
transport_tcp_compress => 'true',
}
Instance with even more options, with no existing matching module parameters :
class { 'elasticsearch':
elasticsearch_options => {
'index.refresh_interval' => '10s',
'index.term_index_interval' => '512',
'index.translog.flush_threshold_ops' => '50000',
'indices.memory.index_buffer_size' => '20%',
},
}
2013-04-19 - 0.1.2
- Use @varname syntax in templates to silence puppet 3.2 warnings.
2013-04-15 - 0.1.1
- Add examples to README.md.
2013-04-15 - 0.1.0
- Split the module into its own git repository.
- Switch to 2-space indent.
- Clean up README and use markdown.
- Add $elasticsearch_options variable to support any elasticsearch.yml options.
2012-11-13 - 0.0.1
- Initial module release.
Copyright (C) 2012-2013 Matthias Saou 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.