Skip to content
This repository was archived by the owner on Apr 12, 2022. It is now read-only.

Commit 298bf0b

Browse files
authored
7.16.1 release (#170)
1 parent 18e9b4b commit 298bf0b

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 7.16.1
4+
5+
* 7.16.1 as default version.
6+
* 6.8.21 as 6.x tested version
7+
8+
9+
| PR | Author | Title |
10+
| --- | --- | --- |
11+
| [#166](https://github.com/elastic/ansible-beats/pull/166) | [@mgreau](https://github.com/mgreau) | Add warning message about 8.x versions |
12+
| [#164](https://github.com/elastic/ansible-beats/pull/164) | [@seadog007](https://github.com/seadog007) | Remove duplicated space |
13+
14+
315
## 7.16.0
416

517
* 7.16.0 as default version.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This role provides a generic means of installing Elastic supported Beats
3434
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.
3535

3636
```sh
37-
ansible-galaxy install elastic.beats,v7.16.0
37+
ansible-galaxy install elastic.beats,v7.16.1
3838
```
3939

4040
Then create your playbook yaml adding the role beats.
@@ -47,7 +47,7 @@ The simplest configuration therefore consists of:
4747
roles:
4848
- role: elastic.beats
4949
vars:
50-
beats_version: 7.16.0
50+
beats_version: 7.16.1
5151
beat: filebeat
5252
beat_conf:
5353
filebeat:
@@ -58,11 +58,11 @@ The simplest configuration therefore consists of:
5858
- /var/log/*.log
5959
```
6060
61-
The above installs Filebeat 7.16.0 on the hosts 'localhost'.
61+
The above installs Filebeat 7.16.1 on the hosts 'localhost'.
6262
6363
**Notes**:
6464
- Beats default version is described in [`beats_version`](https://github.com/elastic/ansible-beats/blob/main/defaults/main.yml#L4). You can override this variable in your playbook to install another version.
65-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.16.0](https://github.com/elastic/ansible-beats/blob/main/defaults/main.yml#L4) and [6.8.18](https://github.com/elastic/ansible-beats/blob/main/test/integration/standard-6x.yml#L7) at the time of writing), this role should work with others version also in most cases.
65+
While we are testing this role only with one 7.x and one 6.x version (respectively [7.16.1](https://github.com/elastic/ansible-beats/blob/main/defaults/main.yml#L4) and [6.8.21](https://github.com/elastic/ansible-beats/blob/main/test/integration/standard-6x.yml#L7) at the time of writing), this role should work with others version also in most cases.
6666
- 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.
6767

6868
## Testing
@@ -168,7 +168,7 @@ Supported variables are as follows:
168168

169169
- **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).
170170
- **beat_conf** (*MANDATORY*): Beat Configuration. Should be defined as a map.
171-
- **beats_version** (*Defaults to `7.16.0`*): Beats version.
171+
- **beats_version** (*Defaults to `7.16.1`*): Beats version.
172172
- **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).
173173
- **use_repository** (*Defaults to `true`*): Use elastic repo for yum or apt if true. If false, a custom custom_package_url must be provided.
174174
- **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.

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# defaults file for beats
3-
beats_version: 7.16.0
3+
beats_version: 7.16.1
44
oss_version: false
55
version_lock: false
66
use_repository: true

test/integration/standard-6x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
input_type: log
1313
registry_file: /var/lib/filebeat/registry
1414
vars:
15-
beats_version: 6.8.18
15+
beats_version: 6.8.21
1616
use_repository: "true"

0 commit comments

Comments
 (0)