rolling_cluster_restart.yml 1.2 KB

1234567891011121314151617181920212223242526
  1. ---
  2. # If we are currently restarting the "es" cluster we want to check if we are scaling up the number of es nodes
  3. # If we are currently restarting the "es-ops" cluster we want to check if we are scaling up the number of ops nodes
  4. # If we've created a new node for that cluster then the appropriate variable will be true, otherwise we default to false
  5. - set_fact:
  6. _skip_healthcheck: "{{ ( __logging_scale_up | default(false) ) if _cluster_component == 'es' else ( __logging_ops_scale_up | default(false) ) }}"
  7. # Flush ES
  8. # It is possible for this to fail on a brand new cluster, so don't fail then
  9. - name: "Flushing for logging-{{ _cluster_component }} cluster"
  10. command: >
  11. curl -s -k
  12. --cert {{ _logging_handler_tempdir.stdout }}/admin-cert
  13. --key {{ _logging_handler_tempdir.stdout }}/admin-key
  14. -XPOST 'https://logging-{{ _cluster_component }}.{{ openshift_logging_elasticsearch_namespace }}.svc:9200/_flush/synced'
  15. register: _flush_output
  16. changed_when:
  17. - "_flush_output.stdout != ''"
  18. - (_flush_output.stdout | from_json)['_shards']['successful'] > 0
  19. failed_when: false
  20. # Loop over each DC for restart_es_node.yml
  21. - include_tasks: restart_es_node.yml
  22. with_items: "{{ logging_restart_cluster_dcs }}"
  23. loop_control:
  24. loop_var: _es_node