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

Commit ffe72f9

Browse files
committed
[7.6.2] bump version
1 parent eb3aad8 commit ffe72f9

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

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

3232
```sh
33-
ansible-galaxy install elastic.beats,7.6.1
33+
ansible-galaxy install elastic.beats,7.6.2
3434
```
3535

3636
Then create your playbook yaml adding the role beats.
@@ -43,7 +43,7 @@ The simplest configuration therefore consists of:
4343
roles:
4444
- role: elastic.beats
4545
vars:
46-
beats_version: 7.6.1
46+
beats_version: 7.6.2
4747
beat: filebeat
4848
beat_conf:
4949
filebeat:
@@ -54,11 +54,11 @@ The simplest configuration therefore consists of:
5454
- /var/log/*.log
5555
```
5656
57-
The above installs Filebeat 7.6.1 on the hosts 'localhost'.
57+
The above installs Filebeat 7.6.2 on the hosts 'localhost'.
5858
5959
**Notes**:
6060
- 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.
61-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.6.1](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.7](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.
61+
While we are testing this role only with one 7.x and one 6.x version (respectively [7.6.2](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.8](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.
6262
- 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.
6363

6464
## Testing
@@ -164,7 +164,7 @@ Supported variables are as follows:
164164

165165
- **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).
166166
- **beat_conf** (*MANDATORY*): Beat Configuration. Should be defined as a map.
167-
- **beats_version** (*Defaults to `7.6.1`*): Beats version.
167+
- **beats_version** (*Defaults to `7.6.2`*): Beats version.
168168
- **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).
169169
- **use_repository** (*Defaults to `true`*): Use elastic repo for yum or apt if true. If false, a custom custom_package_url must be provided.
170170
- **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.6.1
3+
beats_version: 7.6.2
44
oss_version: false
55
version_lock: false
66
use_repository: true

helpers/bumper.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
os.chdir(os.path.join(os.path.dirname(__file__), '..'))
1515

1616
old_versions = {
17-
6: '6.8.6',
18-
7: '7.6.0',
17+
6: '6.8.7',
18+
7: '7.6.1',
1919
}
2020

2121
new_versions = {
22-
6: '6.8.7',
23-
7: '7.6.1',
22+
6: '6.8.8',
23+
7: '7.6.2',
2424
}
2525

2626
files = [

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.7
15+
beats_version: 6.8.8
1616
use_repository: "true"

0 commit comments

Comments
 (0)