restart_cluster.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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[?(@.status.phase==\"Running\")].metadata.name}
  5. register: _cluster_pods
  6. ### Check for cluster state before making changes -- if its red then we don't want to continue
  7. - name: "Checking current health for {{ _es_node }} cluster"
  8. shell: >
  9. oc exec "{{ _cluster_pods.stdout.split(' ')[0] }}" -c elasticsearch -n "{{ openshift_logging_elasticsearch_namespace }}" -- es_cluster_health
  10. register: _pod_status
  11. when: _cluster_pods.stdout_lines | count > 0
  12. - when:
  13. - _pod_status.stdout is defined
  14. - (_pod_status.stdout | from_json)['status'] in ['red']
  15. block:
  16. - name: Set Logging message to manually restart
  17. run_once: true
  18. set_stats:
  19. data:
  20. installer_phase_logging:
  21. message: "Cluster logging-{{ _cluster_component }} was in a red state and will not be automatically restarted. Please see documentation regarding doing a {{ 'full' if full_restart_cluster | bool else 'rolling'}} cluster restart."
  22. - debug: msg="Cluster logging-{{ _cluster_component }} was in a red state and will not be automatically restarted. Please see documentation regarding doing a {{ 'full' if full_restart_cluster | bool else 'rolling'}} cluster restart."
  23. - when: _pod_status.stdout is undefined or (_pod_status.stdout | from_json)['status'] in ['green', 'yellow']
  24. block:
  25. # Disable external communication for {{ _cluster_component }}
  26. - name: Disable external communication for logging-{{ _cluster_component }}
  27. oc_service:
  28. state: present
  29. name: "logging-{{ _cluster_component }}"
  30. namespace: "{{ openshift_logging_elasticsearch_namespace }}"
  31. selector:
  32. component: "{{ _cluster_component }}"
  33. provider: openshift
  34. connection: blocked
  35. labels:
  36. logging-infra: 'support'
  37. ports:
  38. - port: 9200
  39. targetPort: "restapi"
  40. when:
  41. - full_restart_cluster | bool
  42. - name: "Disable shard balancing for logging-{{ _cluster_component }} cluster"
  43. command: >
  44. 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" } }'
  45. register: _disable_output
  46. changed_when: "'\"acknowledged\":true' in _disable_output.stdout"
  47. when: _cluster_pods.stdout_lines | count > 0
  48. # Flush ES
  49. - name: "Flushing for logging-{{ _cluster_component }} cluster"
  50. command: >
  51. oc exec {{ _cluster_pods.stdout.split(' ')[0] }} -c elasticsearch -n {{ openshift_logging_elasticsearch_namespace }} -- {{ __es_local_curl }} -XPUT 'https://localhost:9200/_flush/synced'
  52. register: _flush_output
  53. changed_when: "'\"acknowledged\":true' in _flush_output.stdout"
  54. when:
  55. - _cluster_pods.stdout_lines | count > 0
  56. - full_restart_cluster | bool
  57. - command: >
  58. oc get dc -l component={{ _cluster_component }},provider=openshift -n {{ openshift_logging_elasticsearch_namespace }} -o jsonpath={.items[*].metadata.name}
  59. register: _cluster_dcs
  60. ## restart all dcs for full restart
  61. - name: "Restart ES node {{ _es_node }}"
  62. include_tasks: restart_es_node.yml
  63. with_items: "{{ _cluster_dcs }}"
  64. loop_control:
  65. loop_var: _es_node
  66. when:
  67. - full_restart_cluster | bool
  68. ## restart the node if it's dc is in the list of nodes to restart?
  69. - name: "Restart ES node {{ _es_node }}"
  70. include_tasks: restart_es_node.yml
  71. with_items: "{{ _restart_logging_nodes }}"
  72. loop_control:
  73. loop_var: _es_node
  74. when:
  75. - not full_restart_cluster | bool
  76. - _es_node in _cluster_dcs.stdout
  77. ## we may need a new first pod to run against -- fetch them all again
  78. - command: >
  79. oc get pod -l component={{ _cluster_component }},provider=openshift -n {{ openshift_logging_elasticsearch_namespace }} -o jsonpath={.items[?(@.status.phase==\"Running\")].metadata.name}
  80. register: _cluster_pods
  81. - name: "Enable shard balancing for logging-{{ _cluster_component }} cluster"
  82. command: >
  83. 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" } }'
  84. register: _enable_output
  85. changed_when: "'\"acknowledged\":true' in _enable_output.stdout"
  86. # Reenable external communication for {{ _cluster_component }}
  87. - name: Reenable external communication for logging-{{ _cluster_component }}
  88. oc_service:
  89. state: present
  90. name: "logging-{{ _cluster_component }}"
  91. namespace: "{{ openshift_logging_elasticsearch_namespace }}"
  92. selector:
  93. component: "{{ _cluster_component }}"
  94. provider: openshift
  95. labels:
  96. logging-infra: 'support'
  97. ports:
  98. - port: 9200
  99. targetPort: "restapi"
  100. when:
  101. - full_restart_cluster | bool