glusterfs_deploy.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. ---
  2. - assert:
  3. that: "glusterfs_nodes | count >= 3"
  4. msg: There must be at least three GlusterFS nodes specified
  5. - name: Delete pre-existing GlusterFS resources
  6. oc_obj:
  7. namespace: "{{ glusterfs_namespace }}"
  8. kind: "{{ item.kind }}"
  9. name: "{{ item.name }}"
  10. state: absent
  11. with_items:
  12. - kind: template
  13. name: glusterfs
  14. - kind: daemonset
  15. name: "glusterfs-{{ glusterfs_name | default }}"
  16. when: glusterfs_wipe
  17. - name: Unlabel any existing GlusterFS nodes
  18. oc_label:
  19. name: "{{ hostvars[item].openshift.node.nodename }}"
  20. kind: node
  21. state: absent
  22. labels: "{{ glusterfs_nodeselector | lib_utils_oo_dict_to_list_of_dict }}"
  23. with_items: "{{ groups.all }}"
  24. when: "'openshift' in hostvars[item] and glusterfs_wipe"
  25. - name: Delete pre-existing GlusterFS config
  26. file:
  27. path: /var/lib/glusterd
  28. state: absent
  29. delegate_to: "{{ item }}"
  30. with_items: "{{ glusterfs_nodes | default([]) }}"
  31. when: glusterfs_wipe
  32. - name: Get GlusterFS storage devices state
  33. command: "pvdisplay -C --noheadings -o pv_name,vg_name {% for device in hostvars[item].glusterfs_devices %}{{ device }} {% endfor %}"
  34. register: devices_info
  35. delegate_to: "{{ item }}"
  36. with_items: "{{ glusterfs_nodes | default([]) }}"
  37. failed_when: False
  38. when: glusterfs_wipe
  39. # Runs "lvremove -ff <vg>; vgremove -fy <vg>; pvremove -fy <pv>" for every device found to be a physical volume.
  40. - name: Clear GlusterFS storage device contents
  41. shell: "{% for line in item.stdout_lines %}{% set fields = line.split() %}{% if fields | count > 1 %}lvremove -ff {{ fields[1] }}; vgremove -fy {{ fields[1] }}; {% endif %}pvremove -fy {{ fields[0] }}; {% endfor %}"
  42. delegate_to: "{{ item.item }}"
  43. with_items: "{{ devices_info.results }}"
  44. register: clear_devices
  45. until:
  46. - "'contains a filesystem in use' not in clear_devices.stderr"
  47. delay: 1
  48. retries: 30
  49. when:
  50. - glusterfs_wipe
  51. - item.stdout_lines | count > 0
  52. - name: Label GlusterFS nodes
  53. oc_label:
  54. name: "{{ hostvars[item].openshift.node.nodename }}"
  55. kind: node
  56. state: add
  57. labels: "{{ glusterfs_nodeselector | lib_utils_oo_dict_to_list_of_dict }}"
  58. with_items: "{{ glusterfs_nodes | default([]) }}"
  59. - name: Copy GlusterFS DaemonSet template
  60. copy:
  61. src: "glusterfs-template.yml"
  62. dest: "{{ mktemp.stdout }}/glusterfs-template.yml"
  63. - name: Create GlusterFS template
  64. oc_obj:
  65. namespace: "{{ glusterfs_namespace }}"
  66. kind: template
  67. name: "glusterfs"
  68. state: present
  69. files:
  70. - "{{ mktemp.stdout }}/glusterfs-template.yml"
  71. - name: Check GlusterFS DaemonSet status
  72. oc_obj:
  73. namespace: "{{ glusterfs_namespace }}"
  74. kind: daemonset
  75. name: glusterfs-{{ glusterfs_name }}
  76. state: list
  77. register: glusterfs_ds
  78. - name: Deploy GlusterFS pods
  79. oc_process:
  80. namespace: "{{ glusterfs_namespace }}"
  81. template_name: "glusterfs"
  82. create: True
  83. params:
  84. IMAGE_NAME: "{{ glusterfs_image }}"
  85. NODE_LABELS: "{{ glusterfs_nodeselector }}"
  86. CLUSTER_NAME: "{{ glusterfs_name }}"
  87. GB_GLFS_LRU_COUNT: "{{ glusterfs_block_host_vol_max }}"
  88. when: (glusterfs_ds.results.results[0].status is not defined) or
  89. (glusterfs_ds.results.results[0].status.numberReady | default(0) < glusterfs_ds.results.results[0].status.desiredNumberScheduled | default(glusterfs_nodes | count))
  90. - name: Wait for GlusterFS pods
  91. oc_obj:
  92. namespace: "{{ glusterfs_namespace }}"
  93. kind: pod
  94. state: list
  95. selector: "glusterfs={{ glusterfs_name }}-pod"
  96. register: glusterfs_pods
  97. until:
  98. - "glusterfs_pods.results.results[0]['items'] | count > 0"
  99. # There must be as many pods with 'Ready' staus True as there are nodes expecting those pods
  100. - "glusterfs_pods.results.results[0]['items'] | lib_utils_oo_collect(attribute='status.conditions') | lib_utils_oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == glusterfs_nodes | count"
  101. delay: 10
  102. retries: "{{ (glusterfs_timeout | int / 10) | int }}"