Installs and configures Apache Ignite on Redhat/Debian based hosts.
This role has below requirements:
- Python 3.x
- Ansible (min 2.4, suggested 2.9.16)
You can install suggested version with pip3:
$ pip3 install "ansible==2.9.16"
Note that this role requires root access, so either run it in a playbook with a global become: true
, or invoke the role in your playbook.
See the default values in defaults/main.yml. You can overwrite them in vars/main.yml if neccessary or you can set them while running playbook.
Please note that this role can ensure that
firewalld
systemd service on your servers are started and enabled by default. If you want to start and enablefirewalld
service, please modify below variable as true while running playbook:firewalld_enabled: true
None
Single node
[ignite]
ignitenode01.example.com
Multi node
[ignite]
ignitenode01.example.com
ignitenode02.example.com
ignitenode03.example.com
- hosts: all
become: true
roles:
- role: bilalcaliskan.apache_ignite
vars:
install_ignite: true
ignite_version: 2.7.5
open_file_limit: 166384
process_limit: 127949
java_opts: -XX:+UseG1GC -Xms1g -Xmx1g -server -XX:MaxMetaspaceSize=256m
- hosts: all
become: true
roles:
- role: bilalcaliskan.apache_ignite
vars:
install_ignite: false
This project requires below tools for development:
- Python 3.x
- Ansible - (min 2.4, suggested 2.9.16)
- pre-commit
- ansible-lint - required by pre-commit
- Bash shell - required by pre-commit
After you install all the tools above, you can simply configure pre-commit by typing:
$ pre-commit install
Apache License 2.0