1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# elastic_stack
[](https://github.com/voxpupuli/puppet-elastic_stack/actions?query=workflow%3ACI)
[](https://github.com/voxpupuli/puppet-elastic_stack/actions/workflows/release.yml)
[](https://forge.puppetlabs.com/puppet/elastic_stack)
[](https://forge.puppetlabs.com/puppet/elastic_stack)
[](https://forge.puppetlabs.com/puppet/elastic_stack)
[](https://forge.puppetlabs.com/puppet/elastic_stack)
[](http://www.puppetmodule.info/m/puppet-elastic_stack)
[](LICENSE)
[](#transfer-notice)
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:
```puppet
include elastic_stack::repo
```
You may wish to specify a major version, since each has its own repository:
```puppet
class { 'elastic_stack::repo':
version => 5,
}
```
To access prerelease versions, such as release candidates, set `prerelease` to `true`.
```puppet
class { 'elastic_stack::repo':
version => 6,
prerelease => true,
}
```
To access the repository for OSS-only packages, set `oss` to `true`.
```puppet
class { 'elastic_stack::repo':
oss => true,
}
```
To use a custom package repository, set `base_repo_url`, like this:
```puppet
class { 'elastic_stack::repo':
base_repo_url => 'https://mymirror.example.org/elastic-artifacts/packages',
}
```
## Transfer Notice
This module was originally authored by [Elastic](https://www.elastic.co).
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.
|