Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ You will need the following Ansible collections installed
You will need these packages / libraries installed. Some very basic packages like `openssl` get handled by the collection if needed. The following list contains packages and libraries which only apply to special cases or need for you to decide on the installation method.

* `passlib` Python library if you do not disable password hashing for logstash user and you want to use logstash role from this collection. It should be installed with pip on the Ansible controller.
* `elasticsearch` Python module. Current versions are either compatible to Elasticsearch 9 or versions lower than 9. There seems to be no version that can serve both. So for now we install a version of the client lower than 9 but need to take care to install the right one when we make this collection compatible to Elastic Stack 9

You may want the following Ansible roles installed. There other ways to achieve what they are doing but using them is easy and convenient.

Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ molecule
molecule-plugins[docker]
pytest
passlib
elasticsearch
elasticsearch<9
4 changes: 2 additions & 2 deletions roles/elasticstack/tasks/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
- name: Install Python Modules via pip
ansible.builtin.pip:
name:
- elasticsearch
- 'elasticsearch<9'
- cryptography
ignore_errors: true
register: elasticstack_pip_installation
Expand All @@ -61,7 +61,7 @@
- name: Install Python Modules via pip - forced
ansible.builtin.pip:
name:
- elasticsearch
- 'elasticsearch<9'
- cryptography
break_system_packages: true
ignore_errors: true
Expand Down
Loading