Support for configuration per node and multiple nodes per server
This commit is contained in:
parent
0c6f326bed
commit
d19297adda
30 changed files with 818 additions and 88 deletions
10
tasks/checkParameters.yml
Normal file
10
tasks/checkParameters.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Check for mandatory parameters
|
||||
|
||||
- fail: msg="Parameter 'es_http_port' must be defined when multicast is disabled"
|
||||
when: es_multicast_enabled == false and es_http_port is not defined
|
||||
|
||||
- fail: msg="Parameter 'es_transport_tcp_port' must be defined when multicast is disabled"
|
||||
when: es_multicast_enabled == false and es_transport_tcp_port is not defined
|
||||
|
||||
- fail: msg="Parameter 'es_unicast_hosts' must be defined when multicast is disabled"
|
||||
when: es_multicast_enabled == false and es_unicast_hosts is not defined
|
||||
Loading…
Add table
Add a link
Reference in a new issue