main.yml 431 B

12345678910111213
  1. ---
  2. - name: "Restarting logging-{{ _cluster_component }} cluster"
  3. listen: "restart elasticsearch"
  4. include_tasks: restart_cluster.yml
  5. with_items: "{{ _restart_logging_components }}"
  6. loop_control:
  7. loop_var: _cluster_component
  8. when: not logging_elasticsearch_rollout_override | bool
  9. ## Stop this from running more than once
  10. - set_fact:
  11. logging_elasticsearch_rollout_override: True
  12. listen: "restart elasticsearch"