You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ This role provides a generic means of installing Elastic supported Beats
31
31
Create your Ansible playbook with your own tasks, and include the role beats. You will have to have this repository accessible within the context of playbook.
32
32
33
33
```sh
34
-
ansible-galaxy install elastic.beats,7.8.1
34
+
ansible-galaxy install elastic.beats,7.9.0
35
35
```
36
36
37
37
Then create your playbook yaml adding the role beats.
@@ -44,7 +44,7 @@ The simplest configuration therefore consists of:
44
44
roles:
45
45
- role: elastic.beats
46
46
vars:
47
-
beats_version: 7.8.1
47
+
beats_version: 7.9.0
48
48
beat: filebeat
49
49
beat_conf:
50
50
filebeat:
@@ -55,11 +55,11 @@ The simplest configuration therefore consists of:
55
55
- /var/log/*.log
56
56
```
57
57
58
-
The above installs Filebeat 7.8.1 on the hosts 'localhost'.
58
+
The above installs Filebeat 7.9.0 on the hosts 'localhost'.
59
59
60
60
**Notes**:
61
61
- Beats default version is described in [`beats_version`](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4). You can override this variable in your playbook to install another version.
62
-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.8.1](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.11](https://github.com/elastic/ansible-beats/blob/master/test/integration/standard-6x.yml#L7) at the time of writing), this role should work with others version also in most cases.
62
+
While we are testing this role only with one 7.x and one 6.x version (respectively [7.9.0](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.12](https://github.com/elastic/ansible-beats/blob/master/test/integration/standard-6x.yml#L7) at the time of writing), this role should work with others version also in most cases.
63
63
- Beat product is described in `beat` variable. While currently tested Beats are Filebeat, Metricbeat & Packetbeat, this role should work also with other member of [The Beats Family](https://www.elastic.co/products/beats) in most cases.
64
64
65
65
## Testing
@@ -165,7 +165,7 @@ Supported variables are as follows:
165
165
166
166
- **beat** (*MANDATORY*): Beat product. Supported values are: "filebeat", "metricbeat" & "packetbeat" (others beats from [The Beats Family](https://www.elastic.co/products/beats) should work in most cases but aren't currently tested).
167
167
- **beat_conf** (*MANDATORY*): Beat Configuration. Should be defined as a map.
168
-
- **beats_version** (*Defaults to `7.8.1`*): Beats version.
168
+
- **beats_version** (*Defaults to `7.9.0`*): Beats version.
169
169
- **version_lock** (*Defaults to `false`*): Locks the installed version if set to true, thus preventing other processes from updating. This will not impact the roles ability to update the beat on subsequent runs (it unlocks and re-locks if required).
170
170
- **use_repository** (*Defaults to `true`*): Use elastic repo for yum or apt if true. If false, a custom custom_package_url must be provided.
171
171
- **beats_add_repository** (*Defaults to `{use_repository}`*): Install elastic repo for yum or apt if true. If false, the present repositories will be used. Useful if you already have beats packages in your repo.
0 commit comments