glusterfs_restart_pod.yml 986 B

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. - name: Unlabel GlusterFS node
  3. oc_label:
  4. name: "{{ restart_node.spec.nodeName }}"
  5. kind: node
  6. state: absent
  7. labels: "{{ glusterfs_nodeselector | lib_utils_oo_dict_to_list_of_dict }}"
  8. # There was an alternate installation method, outside of openshift-ansible,
  9. # that was written prior to this Ansible automation. It used a different style
  10. # label and we wan tot be able to upgrade those installations as well.
  11. - name: Unlabel GlusterFS node (old label)
  12. oc_label:
  13. name: "{{ restart_node.spec.nodeName }}"
  14. kind: node
  15. state: absent
  16. labels: [ { 'key': 'storagenode', 'value': '' } ]
  17. - import_tasks: wait_for_pods.yml
  18. vars:
  19. glusterfs_count: "{{ glusterfs_nodes | count - 1 }}"
  20. - name: Label GlusterFS nodes
  21. oc_label:
  22. name: "{{ restart_node.spec.nodeName }}"
  23. kind: node
  24. state: add
  25. labels: "{{ glusterfs_nodeselector | lib_utils_oo_dict_to_list_of_dict }}"
  26. - import_tasks: wait_for_pods.yml
  27. - import_tasks: cluster_health.yml