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

Commit 0f02c73

Browse files
7.13.4 release (#154)
1 parent 654f2e7 commit 0f02c73

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 7.13.4
4+
5+
* 7.13.4 as default version.
6+
37
## 7.13.3
48

59
* 7.13.3 as default version.

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This role provides a generic means of installing Elastic supported Beats
3232
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.
3333

3434
```sh
35-
ansible-galaxy install elastic.beats,v7.13.3
35+
ansible-galaxy install elastic.beats,v7.13.4
3636
```
3737

3838
Then create your playbook yaml adding the role beats.
@@ -45,7 +45,7 @@ The simplest configuration therefore consists of:
4545
roles:
4646
- role: elastic.beats
4747
vars:
48-
beats_version: 7.13.3
48+
beats_version: 7.13.4
4949
beat: filebeat
5050
beat_conf:
5151
filebeat:
@@ -56,11 +56,11 @@ The simplest configuration therefore consists of:
5656
- /var/log/*.log
5757
```
5858
59-
The above installs Filebeat 7.13.3 on the hosts 'localhost'.
59+
The above installs Filebeat 7.13.4 on the hosts 'localhost'.
6060
6161
**Notes**:
6262
- 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.
63-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.13.3](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.17](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+
While we are testing this role only with one 7.x and one 6.x version (respectively [7.13.4](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.17](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.
6464
- 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.
6565

6666
## Testing
@@ -166,7 +166,7 @@ Supported variables are as follows:
166166

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# defaults file for beats
3-
beats_version: 7.13.3
3+
beats_version: 7.13.4
44
oss_version: false
55
version_lock: false
66
use_repository: true

0 commit comments

Comments
 (0)