cookbook 'yum-elasticsearch', '= 0.2.1'
yum-elasticsearch (11) Versions 0.2.1 Follow0
Installs and configures the Elasticsearch yum repository
cookbook 'yum-elasticsearch', '= 0.2.1', :supermarket
knife supermarket install yum-elasticsearch
knife supermarket download yum-elasticsearch
yum-elasticsearch Cookbook
The yum-elasticsearch cookbook takes over management of the default repositoryids used with the official elasticsearch repositories. It allows attribute manipulation of the elasticsearch
yum channel.
Requirements
- Chef 11+
- yum version 3.2.0 or higher
Platforms
- Fedora and RHEL based distributions (RHEL, CentOS, and Scientific Linux) are supported
Attributes
The following attributes are set by default
default['yum']['elasticsearch']['description'] = 'Duo Security Repository' default['yum']['elasticsearch']['baseurl'] = "http://packages.elastic.co/elasticsearch/2.x/centos" default['yum']['elasticsearch']['gpgkey'] = 'http://packages.elastic.co/GPG-KEY-elasticsearch' default['yum']['elasticsearch']['gpgcheck'] = true default['yum']['elasticsearch']['enabled'] = true
Recipes
- default - Walks through node attributes and feeds a yum_resource
- parameters. The following is an example a resource generated by the
- recipe during compilation.
yum_repository 'elasticsearch' do baseurl 'http://packages.elastic.co/elasticsearch/2.x/centos' description 'Elasticsearch Repository' enabled true gpgcheck true gpgkey 'http://packages.elastic.co/GPG-KEY-elasticsearch' end
Usage Example
To disable the elasticsearch repository through a Role or Environment definition
default_attributes( :yum => { :elasticsearch => { :enabled => { false } } } )
To enable the elasticsearch repository with a wrapper cookbook, place the following in a recipe:
node.default['yum']['elasticsearch']['enabled'] = true include_recipe 'yum-elasticsearch'
More Examples
Point the base and updates repositories at an internally hosted server.
node.default['yum']['elasticsearch']['enabled'] = true node.default['yum']['elasticsearch']['mirrorlist'] = nil node.default['yum']['elasticsearch']['baseurl'] = 'https://internal.example.com/elasticsearch/6/os/x86_64' node.default['yum']['elasticsearch']['sslverify'] = false include_recipe 'yum-elasticsearch'
Maintainers
- Chase Bolt (chase.bolt@gmail.com)
License
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.
Dependent cookbooks
yum ~> 3.2 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
v0.2.1
- prefixing all repos with elasticsearch for easy sorting
v0.2.0
- adding additional elasticsearch projects
v0.1.0
- Initial release
Foodcritic Metric
0.2.1 passed this metric
0.2.1 passed this metric