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

Commit ef36f10

Browse files
nkammahjmlrt
andauthored
7.9.2 release (#723)
Co-authored-by: Julien Mailleret <[email protected]>
1 parent a933f3c commit ef36f10

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

CHANGELOG.md

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

3+
## 7.9.2 - 2020/09/24
4+
5+
* 7.9.2 as default version
6+
7+
| PR | Author | Title |
8+
|-------------------------------------------------------------------|----------------------------------------|------------------------------------------|
9+
| [#716](https://github.com/elastic/ansible-elasticsearch/pull/716) | [@lksnyder0](https://github.com/lksnyder0) | Use run_once for api related tasks |
10+
311
## 7.9.1 - 2020/09/03
412

513
* 7.9.1 as default version

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This role uses the json_query filter which [requires jmespath](https://github.co
5757
Create your Ansible playbook with your own tasks, and include the role elasticsearch. You will have to have this repository accessible within the context of playbook.
5858

5959
```sh
60-
ansible-galaxy install elastic.elasticsearch,7.9.1
60+
ansible-galaxy install elastic.elasticsearch,7.9.2
6161
```
6262

6363
Then create your playbook yaml adding the role elasticsearch.
@@ -71,14 +71,14 @@ The simplest configuration therefore consists of:
7171
roles:
7272
- role: elastic.elasticsearch
7373
vars:
74-
es_version: 7.9.1
74+
es_version: 7.9.2
7575
```
7676
77-
The above installs Elasticsearch 7.9.1 in a single node 'node1' on the hosts 'localhost'.
77+
The above installs Elasticsearch 7.9.2 in a single node 'node1' on the hosts 'localhost'.
7878
7979
**Note**:
8080
Elasticsearch default version is described in [`es_version`](https://github.com/elastic/ansible-elasticsearch/blob/master/defaults/main.yml#L2). You can override this variable in your playbook to install another version.
81-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.9.1](https://github.com/elastic/ansible-elasticsearch/blob/master/defaults/main.yml#L2) and [6.8.12](https://github.com/elastic/ansible-elasticsearch/blob/master/.kitchen.yml#L22) at the time of writing), this role should work with other versions also in most cases.
81+
While we are testing this role only with one 7.x and one 6.x version (respectively [7.9.2](https://github.com/elastic/ansible-elasticsearch/blob/master/defaults/main.yml#L2) and [6.8.12](https://github.com/elastic/ansible-elasticsearch/blob/master/.kitchen.yml#L22) at the time of writing), this role should work with other versions also in most cases.
8282

8383
This role also uses [Ansible tags](http://docs.ansible.com/ansible/playbooks_tags.html). Run your playbook with the `--list-tasks` flag for more information.
8484

@@ -399,7 +399,7 @@ In addition to es_config, the following parameters allow the customization of th
399399

400400
* ```oss_version``` Default `false`. Setting this to `true` will install the oss release of elasticsearch
401401
* `es_xpack_trial` Default `false`. Setting this to `true` will start the 30-day trail once the cluster starts.
402-
* ```es_version``` (e.g. "7.9.1").
402+
* ```es_version``` (e.g. "7.9.2").
403403
* ```es_api_host``` The host name used for actions requiring HTTP e.g. installing templates. Defaults to "localhost".
404404
* ```es_api_port``` The port used for actions requiring HTTP e.g. installing templates. Defaults to 9200. **CHANGE IF THE HTTP PORT IS NOT 9200**
405405
* ```es_api_basic_auth_username``` The Elasticsearch username for making admin changing actions. Used if Security is enabled. Ensure this user is admin.

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
es_version: "7.9.1"
2+
es_version: "7.9.2"
33
es_use_snapshot_release: false
44
oss_version: false
55
es_package_name: "elasticsearch"

helpers/bumper.py

Lines changed: 3 additions & 3 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.11',
18-
7: '7.9.0',
17+
6: '6.8.12',
18+
7: '7.9.1',
1919
}
2020

2121
new_versions = {
2222
6: '6.8.12',
23-
7: '7.9.1',
23+
7: '7.9.2',
2424
}
2525

2626
files = [

test/integration/files/custom_config/jvm.options

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
-Xms2g
44
-Xmx2g
5-
-XX:+UseConcMarkSweepGC
6-
-XX:CMSInitiatingOccupancyFraction=75
7-
-XX:+UseCMSInitiatingOccupancyOnly
85
-Des.networkaddress.cache.ttl=60
96
-Des.networkaddress.cache.negative.ttl=10
107
-XX:+AlwaysPreTouch

0 commit comments

Comments
 (0)