elastic_stack
This module contains shared code for various modules to manage Elastic products, like puppet-elasticsearch, puppet-logstash etc.
Version 8 and newer of this module are released by Vox Pupuli. They now follow semantic versioning. Previously the module was maintained by Elastic.
Setting up the Elastic package repository
This module can configure package repositories for Elastic Stack components.
Example:
include elastic_stack::repo
You may wish to specify a major version, since each has its own repository:
class { 'elastic_stack::repo':
version => 5,
}
To access prerelease versions, such as release candidates, set prerelease
to true
.
class { 'elastic_stack::repo':
version => 6,
prerelease => true,
}
To access the repository for OSS-only packages, set oss
to true
.
class { 'elastic_stack::repo':
oss => true,
}
To use a custom package repository, set base_repo_url
, like this:
class { 'elastic_stack::repo':
base_repo_url => 'https://mymirror.example.org/elastic-artifacts/packages',
}
Transfer Notice
This module was originally authored by Elastic. The maintainer preferred that Vox Pupuli take ownership of the module for future improvement and maintenance. Existing pull requests and issues were transferred over, please fork and continue to contribute here instead of Elastic.