Commit graph

998 commits

Author SHA1 Message Date
Julien Mailleret
908d93db91
fixup! [ci] bump ruby to 2.5.7 2020-01-21 15:58:25 +01:00
Julien Mailleret
4fc17bd26d
Merge pull request #664 from jmlrt/new-ruby
[ci] bump ruby to 2.5.7
2020-01-21 14:58:59 +01:00
Julien Mailleret
42e79ea583
[ci] bump ruby to 2.5.7 2020-01-20 07:41:16 +01:00
Jakob Reiter
15c76a3986
Merge pull request #657 from jakommo/fix-links-galaxy
switched relative URLs to absolute URLs to fix broken links in Ansible Galaxy. Fixes #656
2020-01-10 11:40:12 +01:00
Jakob Reiter
4cfd486527 switched relative URLs to absolute URLs to fix broken links in Ansible Galaxy. Fixes #656 2020-01-10 10:59:50 +01:00
Julien Mailleret
50321df03d
Merge pull request #648 from jmlrt/fix-es_java_opts-646
add proxy options to ES_JAVA_OPTS when defined with es_proxy_host
2019-12-19 12:51:54 +01:00
Julien Mailleret
1b53b10454
remove instructions to install plugins using a specific proxy 2019-12-19 12:38:50 +01:00
Julien Mailleret
888480cb75
Merge branch 'master' into fix-es_java_opts-646 2019-12-19 07:21:52 +01:00
Julien Mailleret
754ce50c5c
Merge pull request #649 from jmlrt/751-release
7.5.1 release
2019-12-18 20:23:02 +01:00
Julien Mailleret
ffa66f5d21
[7.5.1] bump version 2019-12-18 15:59:40 +01:00
Julien Mailleret
657681ea8e
[7.5.1] update changelog 2019-12-18 15:58:51 +01:00
Julien Mailleret
af9a5936a0
Merge pull request #647 from jmlrt/fix-es_ssl_certificate_authority-639
fix when condition for es_ssl_certificate_authority
2019-12-18 15:51:24 +01:00
Julien Mailleret
f1b79129f1
add proxy options to ES_JAVA_OPTS when defined with es_proxy_host 2019-12-18 11:57:02 +01:00
Julien Mailleret
1116d4ddf4
fix when condition for es_ssl_certificate_authority
bool ansible filter can only be used for strings matching "true" or "false"
2019-12-18 11:30:25 +01:00
Julien Mailleret
ac8548503a
Merge pull request #643 from jmlrt/fix_templates
set templates task to run only if es_templates is true
2019-12-12 23:06:52 +01:00
Julien Mailleret
11bf8d2d54
set templates task to run only if es_templates is true 2019-12-11 13:40:15 +01:00
Julien Mailleret
d145d188e9
Merge pull request #640 from jmlrt/release750
7.5.0 Release
2019-12-09 15:47:25 +01:00
Julien Mailleret
e208f78e75
[7.5.0] update changelog and breaking changes notices 2019-12-09 08:40:08 +01:00
Julien Mailleret
3292766b09
[7.5.0] update jvm.options template to 7.5.0 dafault values 2019-12-06 22:17:53 +01:00
Julien Mailleret
276e228f75
[7.5.0] bump elasticsearch version 2019-12-06 22:16:17 +01:00
Julien Mailleret
d3c98fdbfc
Merge pull request #637 from jmlrt/use-default-config-files
Use default config files
2019-12-05 16:46:13 +01:00
Julien Mailleret
0b240ef577
Merge branch 'use-default-config-files' of github.com:jmlrt/ansible-elasticsearch into use-default-config-files 2019-12-02 14:15:29 +01:00
Julien Mailleret
ea4d6cf43a
ansible code simplification after review 2019-12-02 14:15:00 +01:00
Julien Mailleret
6aed16cc5a
Merge branch 'master' into use-default-config-files 2019-11-28 07:56:00 +01:00
Julien Mailleret
bc7fc40b34
fix files mode syntax
From Ansible doc (https://docs.ansible.com/ansible/latest/modules/template_module.html#template-module)
For those used to /usr/bin/chmod remember that modes are actually octal numbers. You must either add a leading zero so that Ansible's YAML parser knows it is an octal number (like 0644 or 01777) or quote it (like '644' or '1777') so Ansible receives a string and can do its own conversion from string into number.
Giving Ansible a number without following one of these rules will end up with a decimal number which will have unexpected results.
2019-11-28 07:54:25 +01:00
Julien Mailleret
1dbbda64aa
bump elasticsearch to 6.8.5 and 7.4.2 2019-11-28 07:52:22 +01:00
Julien Mailleret
c9e9ca4809
add integration tests for custom config files 2019-11-28 07:52:17 +01:00
Julien Mailleret
04438f9110
allow to deploy custom config files 2019-11-27 11:50:26 +01:00
Julien Mailleret
8d13c69d88
update jvm options to current version provided by elasticsearch package
The jvm options template provided by this ansible role doesn't reflect current log4j configuration in elasticsearch 6.x and 7.x. This commit update it to default version provided in 6.x and 7.x elasticsearch standard packages.
2019-11-27 11:49:49 +01:00
Julien Mailleret
36fe944048
update system config to current version provided by elasticsearch package
This is removing lot of options deprecated since 6.0 like ES_JVM_OPTIONS, CONF_DIR, DATA_DIR and LOG_DIR (https://www.elastic.co/guide/en/elasticsearch/reference/6.0/breaking_60_packaging_changes.html)
2019-11-27 11:49:49 +01:00
Julien Mailleret
dc813aec3d
remove deprecated MAX_THREADS option
This option doesn't seem to exists anymore in elasticsearch. It's not present in current versions of system configuration provided by recent elasticsearch packages and there is no code using it inside elasticsearch.
2019-11-26 23:36:03 +01:00
Julien Mailleret
6217e9485e
stop overriding log4j configuration
The log4j configuration template provided by this ansible role doesn't reflect current log4j configuration in elasticsearch 6.x and 7.x.
Also this template doesn't contain any variable so everything is hardcoded inside.
As we don't need to override any value inside, let's use standard elasticsearch log4j configuration file provided by elasticsearch package and stop overriding it with this role.
2019-11-26 23:31:59 +01:00
Julien Mailleret
5480ac6226
Merge pull request #636 from jmlrt/es-685-742
bump elasticsearch to 6.8.5 and 7.4.2
2019-11-26 21:17:48 +01:00
Julien Mailleret
f78a33b07b
bump elasticsearch to 6.8.5 and 7.4.2 2019-11-25 22:14:58 +01:00
Julien Mailleret
e6dd15ef0d
indent yaml for config file (#630) 2019-11-21 11:32:20 +01:00
Julien Mailleret
e204b5059a
Merge pull request #620 from pemontto/AddSSLSupport
Add SSL/TLS support
2019-11-19 13:06:49 +01:00
pemontto
8156ab4821
Add option to forgo autogenerated SSL config 2019-11-15 12:24:29 +00:00
Julien Mailleret
9496192bc3
Merge branch 'master' into AddSSLSupport 2019-11-14 10:03:04 +01:00
Julien Mailleret
a54fea0541
Merge pull request #629 from patsevanton/patch-1
Add cluster.initial_master_nodes
2019-11-06 12:01:14 -05:00
Anton Patsev
9364419cce
Add cluster.initial_master_nodes 2019-11-04 23:18:00 +06:00
pemontto
1e6a77ada3
Remove ansible profiling 2019-10-31 13:30:32 +00:00
pemontto
6b1e5c2b63
Fix permissions of cert directory and files 2019-10-31 10:55:40 +00:00
pemontto
8fb9e81289
Remove issue-test-trail test suite 2019-10-31 10:55:13 +00:00
pemontto
70143c6327
Add es_license_api variable 2019-10-31 10:54:53 +00:00
pemontto
9b427f148d
Move integration test files to test directory 2019-10-31 10:54:28 +00:00
pemontto
32ce4b19b9
Move SSL/TLS setup to it's own document 2019-10-31 10:52:50 +00:00
Julien Mailleret
88f270b899
Merge branch 'master' into AddSSLSupport 2019-10-31 08:42:18 +01:00
Julien Mailleret
182979d53f
Merge pull request #625 from jmlrt/bumper-script
add bumper script
2019-10-29 11:21:32 +01:00
pemontto
a2c4012197
Update and document unmanaged user vars 2019-10-28 14:25:52 +00:00
Julien Mailleret
e6ae0104d0
add bumper script 2019-10-25 14:30:59 +02:00