Skip to content

Commit 94c7524

Browse files
author
Philipp Wiesner
committed
Merge remote-tracking branch 'upstream/master'
2 parents b91139d + 727d0b7 commit 94c7524

File tree

4 files changed

+27
-9
lines changed

4 files changed

+27
-9
lines changed

.kitchen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provisioner:
2222
extra_vars:
2323
es_major_version: "<%= ENV['VERSION'] %>"
2424
<% if ENV['VERSION'] == '6.x' %>
25-
es_version: '6.8.16'
25+
es_version: '6.8.17'
2626
<% end %>
2727
<% end %>
2828

CHANGELOG.md

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

3+
## 7.13.3
4+
5+
* 7.13.3 as default version.
6+
* 6.8.17 as 6.x tested version
7+
8+
9+
| PR | Author | Title |
10+
| --- | --- | --- |
11+
| [#800](https://github.com/elastic/ansible-elasticsearch/pull/800) | [@chuckmilam](https://github.com/chuckmilam) | Minor correction for readability. |
12+
13+
14+
## 7.13.2
15+
16+
* 7.13.2 as default version.
17+
18+
## 7.13.1
19+
20+
* 7.13.1 as default version.
21+
322
## 7.13.0
423

524
* 7.13.0 as default version.

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ Ansible-elasticsearch 7.5.2 is updating the configuration files provided by this
4545

4646
### Removing OSS distribution for versions >= 7.11.0
4747

48-
Starting from Elasticsearch 7.11.0, OSS distributions will no more provided following Elasticsearch
49-
recent license change.
48+
Starting from Elasticsearch 7.11.0, OSS distributions will no longer be provided following the recent Elasticsearch license change.
5049

5150
This Ansible role will fail if `oss_version` is set to `true` and `es_version` is greater than
5251
`7.11.0`.
@@ -70,7 +69,7 @@ This role uses the json_query filter which [requires jmespath](https://github.co
7069
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.
7170

7271
```sh
73-
ansible-galaxy install elastic.elasticsearch,v7.13.0
72+
ansible-galaxy install elastic.elasticsearch,v7.13.3
7473
```
7574

7675
Then create your playbook yaml adding the role elasticsearch.
@@ -84,14 +83,14 @@ The simplest configuration therefore consists of:
8483
roles:
8584
- role: elastic.elasticsearch
8685
vars:
87-
es_version: 7.13.0
86+
es_version: 7.13.3
8887
```
8988
90-
The above installs Elasticsearch 7.13.0 in a single node 'node1' on the hosts 'localhost'.
89+
The above installs Elasticsearch 7.13.3 in a single node 'node1' on the hosts 'localhost'.
9190
9291
**Note**:
9392
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.
94-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.13.0](https://github.com/elastic/ansible-elasticsearch/blob/master/defaults/main.yml#L2) and [6.8.16](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.
93+
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-elasticsearch/blob/master/defaults/main.yml#L2) and [6.8.17](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.
9594

9695
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.
9796

@@ -423,7 +422,7 @@ In addition to es_config, the following parameters allow the customization of th
423422

424423
* ```oss_version``` Default `false`. Setting this to `true` will install the oss release of Elasticsearch (for version <7.11.0 only).
425424
* `es_xpack_trial` Default `false`. Setting this to `true` will start the 30-day trail once the cluster starts.
426-
* ```es_version``` (e.g. "7.13.0").
425+
* ```es_version``` (e.g. "7.13.3").
427426
* ```es_api_host``` The host name used for actions requiring HTTP e.g. installing templates. Defaults to "localhost".
428427
* ```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**
429428
* ```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.13.0"
2+
es_version: "7.13.3"
33
es_use_snapshot_release: false
44
oss_version: false
55
es_package_name: "elasticsearch"

0 commit comments

Comments
 (0)