Skip to content
Merged
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
4 changes: 2 additions & 2 deletions roles/elasticsearch/tasks/elasticsearch-rolling-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@
((elasticsearch_response.json | default({})).status | default('')) in _elasticsearch_upgrade_health_statuses
and ((elasticsearch_response.json | default({})).number_of_nodes | default(0) | int)
>= _elasticsearch_upgrade_expected_nodes | int
retries: 30
delay: 30
retries: "{{ elasticsearch_upgrade_health_retries | int }}"
delay: "{{ elasticsearch_upgrade_health_delay | int }}"
vars:
# Same gate as the pre-node-down health wait so both sides of the
# rolling loop honour the same operator preference.
Expand Down
Loading