glusterfs_deploy.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 | oo_dict_to_list_of_dict }}"
  23. with_items: "{{ groups.all }}"
  24. when: 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 | oo_dict_to_list_of_dict }}"
  58. with_items: "{{ glusterfs_nodes | default([]) }}"
  59. - name: Copy GlusterFS DaemonSet template
  60. copy:
  61. src: "{{ openshift.common.examples_content_version }}/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: Deploy GlusterFS pods
  72. oc_process:
  73. namespace: "{{ glusterfs_namespace }}"
  74. template_name: "glusterfs"
  75. create: True
  76. params:
  77. IMAGE_NAME: "{{ glusterfs_image }}"
  78. IMAGE_VERSION: "{{ glusterfs_version }}"
  79. NODE_LABELS: "{{ glusterfs_nodeselector }}"
  80. CLUSTER_NAME: "{{ glusterfs_name }}"
  81. - name: Wait for GlusterFS pods
  82. oc_obj:
  83. namespace: "{{ glusterfs_namespace }}"
  84. kind: pod
  85. state: list
  86. selector: "glusterfs={{ glusterfs_name }}-pod"
  87. register: glusterfs_pods
  88. until:
  89. - "glusterfs_pods.results.results[0]['items'] | count > 0"
  90. # There must be as many pods with 'Ready' staus True as there are nodes expecting those pods
  91. - "glusterfs_pods.results.results[0]['items'] | oo_collect(attribute='status.conditions') | oo_collect(attribute='status', filters={'type': 'Ready'}) | map('bool') | select | list | count == glusterfs_nodes | count"
  92. delay: 10
  93. retries: "{{ (glusterfs_timeout | int / 10) | int }}"