glusterfs_deploy.yml 3.7 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 | 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: Add service accounts to privileged SCC
  53. oc_adm_policy_user:
  54. user: "system:serviceaccount:{{ glusterfs_namespace }}:{{ item }}"
  55. resource_kind: scc
  56. resource_name: privileged
  57. state: present
  58. with_items:
  59. - 'default'
  60. - 'router'
  61. - name: Label GlusterFS nodes
  62. oc_label:
  63. name: "{{ hostvars[item].openshift.node.nodename }}"
  64. kind: node
  65. state: add
  66. labels: "{{ glusterfs_nodeselector | oo_dict_to_list_of_dict }}"
  67. with_items: "{{ glusterfs_nodes | default([]) }}"
  68. - name: Copy GlusterFS DaemonSet template
  69. copy:
  70. src: "{{ openshift.common.examples_content_version }}/glusterfs-template.yml"
  71. dest: "{{ mktemp.stdout }}/glusterfs-template.yml"
  72. - name: Create GlusterFS template
  73. oc_obj:
  74. namespace: "{{ glusterfs_namespace }}"
  75. kind: template
  76. name: "glusterfs"
  77. state: present
  78. files:
  79. - "{{ mktemp.stdout }}/glusterfs-template.yml"
  80. - name: Deploy GlusterFS pods
  81. oc_process:
  82. namespace: "{{ glusterfs_namespace }}"
  83. template_name: "glusterfs"
  84. create: True
  85. params:
  86. IMAGE_NAME: "{{ glusterfs_image }}"
  87. IMAGE_VERSION: "{{ glusterfs_version }}"
  88. NODE_LABELS: "{{ glusterfs_nodeselector }}"
  89. CLUSTER_NAME: "{{ glusterfs_name }}"
  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'] | oo_collect(attribute='status.conditions') | 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 }}"