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

Commit 82827d1

Browse files
author
Yuriy
authored
Merge pull request #97 from ygel/790-release
7.9.0 release (#97)
2 parents 0d97824 + f3d9fb5 commit 82827d1

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

CHANGELOG.md

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

3+
## 7.9.0 - 2020/08/18
4+
5+
* 7.9.0 as default version
6+
* 6.8.12 as 6.x tested version
7+
38
## 7.8.1 - 2020/07/28
49

510
* 7.8.1 as default version

README.md

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

3333
```sh
34-
ansible-galaxy install elastic.beats,7.8.1
34+
ansible-galaxy install elastic.beats,7.9.0
3535
```
3636

3737
Then create your playbook yaml adding the role beats.
@@ -44,7 +44,7 @@ The simplest configuration therefore consists of:
4444
roles:
4545
- role: elastic.beats
4646
vars:
47-
beats_version: 7.8.1
47+
beats_version: 7.9.0
4848
beat: filebeat
4949
beat_conf:
5050
filebeat:
@@ -55,11 +55,11 @@ The simplest configuration therefore consists of:
5555
- /var/log/*.log
5656
```
5757
58-
The above installs Filebeat 7.8.1 on the hosts 'localhost'.
58+
The above installs Filebeat 7.9.0 on the hosts 'localhost'.
5959
6060
**Notes**:
6161
- 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.
6363
- 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.
6464

6565
## Testing
@@ -165,7 +165,7 @@ Supported variables are as follows:
165165

166166
- **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).
167167
- **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.
169169
- **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).
170170
- **use_repository** (*Defaults to `true`*): Use elastic repo for yum or apt if true. If false, a custom custom_package_url must be provided.
171171
- **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.8.1
3+
beats_version: 7.9.0
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.10',
18-
7: '7.8.0',
17+
6: '6.8.11',
18+
7: '7.8.1',
1919
}
2020

2121
new_versions = {
22-
6: '6.8.11',
23-
7: '7.8.1',
22+
6: '6.8.12',
23+
7: '7.9.0',
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.11
15+
beats_version: 6.8.12
1616
use_repository: "true"

0 commit comments

Comments
 (0)