restart_cluster.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. ## get all pods for the cluster
  3. - command: >
  4. oc get pod -l component={{ _cluster_component }},provider=openshift -n {{ openshift_logging_elasticsearch_namespace }} -o jsonpath={.items[*].metadata.name}
  5. register: _cluster_pods
  6. - name: "Disable shard balancing for logging-{{ _cluster_component }} cluster"
  7. command: >
  8. oc exec {{ _cluster_pods.stdout.split(' ')[0] }} -c elasticsearch -n {{ openshift_logging_elasticsearch_namespace }} -- {{ __es_local_curl }} -XPUT 'https://localhost:9200/_cluster/settings' -d '{ "transient": { "cluster.routing.allocation.enable" : "none" } }'
  9. register: _disable_output
  10. changed_when: "'\"acknowledged\":true' in _disable_output.stdout"
  11. when: _cluster_pods.stdout_lines | count > 0
  12. - command: >
  13. oc get dc -l component={{ _cluster_component }},provider=openshift -n {{ openshift_logging_elasticsearch_namespace }} -o jsonpath={.items[*].metadata.name}
  14. register: _cluster_dcs
  15. ## restart the node if it's dc is in the list of nodes to restart?
  16. - name: "Restart ES node {{ _es_node }}"
  17. include_tasks: restart_es_node.yml
  18. with_items: "{{ _restart_logging_nodes }}"
  19. loop_control:
  20. loop_var: _es_node
  21. when: _es_node in _cluster_dcs.stdout
  22. ## we may need a new first pod to run against -- fetch them all again
  23. - command: >
  24. oc get pod -l component={{ _cluster_component }},provider=openshift -n {{ openshift_logging_elasticsearch_namespace }} -o jsonpath={.items[*].metadata.name}
  25. register: _cluster_pods
  26. - name: "Enable shard balancing for logging-{{ _cluster_component }} cluster"
  27. command: >
  28. oc exec {{ _cluster_pods.stdout.split(' ')[0] }} -c elasticsearch -n {{ openshift_logging_elasticsearch_namespace }} -- {{ __es_local_curl }} -XPUT 'https://localhost:9200/_cluster/settings' -d '{ "transient": { "cluster.routing.allocation.enable" : "all" } }'
  29. register: _enable_output
  30. changed_when: "'\"acknowledged\":true' in _enable_output.stdout"