Remove OSS support for version >= 7.11.0 (#770)
This commit is removing the option to install Elasticsearch OSS distribution for version >= 7.11.0. This is due to Elasticsearch recent license change. See https://www.elastic.co/blog/licensing-change for more details. - Add notice to breaking changes and update documentation - Fail the deployment if trying to install OSS >= 7.11.0 - Remove OSS tests for 7.x except the upgrade test from last OSS version to default distribution
This commit is contained in:
parent
d3e394b071
commit
e2caeb84b3
3 changed files with 21 additions and 5 deletions
|
|
@ -5,6 +5,13 @@
|
|||
msg: "WARNING: es_xpack_features variable is now deprecated. All feature are now enabled by default"
|
||||
when: es_xpack_features is defined and not oss_version
|
||||
|
||||
- name: "fail when oss_version is true with es_version >= 7.11.0"
|
||||
fail:
|
||||
msg: >
|
||||
OSS versions are not available for Elasticsearch >= 7.11.0.
|
||||
See https://www.elastic.co/blog/licensing-change for more details.
|
||||
when: oss_version and es_version is version('7.11.0', '>=')
|
||||
|
||||
- name: fail when es_proxy_port is not defined or is blank
|
||||
fail: msg="es_proxy_port must be specified and cannot be blank when es_proxy_host is defined"
|
||||
when: (es_proxy_port is not defined or es_proxy_port == '') and (es_proxy_host is defined and es_proxy_host != '')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue