config.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. - name: GlusterFS Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set GlusterFS install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_glusterfs:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: Open firewall ports for GlusterFS nodes
  14. hosts: glusterfs
  15. tasks:
  16. - include_role:
  17. name: openshift_storage_glusterfs
  18. tasks_from: firewall.yml
  19. when:
  20. - openshift_storage_glusterfs_is_native | default(True) | bool
  21. - include_role:
  22. name: openshift_storage_glusterfs
  23. tasks_from: kernel_modules.yml
  24. when:
  25. - openshift_storage_glusterfs_is_native | default(True) | bool
  26. - name: Open firewall ports for GlusterFS registry nodes
  27. hosts: glusterfs_registry
  28. tasks:
  29. - include_role:
  30. name: openshift_storage_glusterfs
  31. tasks_from: firewall.yml
  32. when:
  33. - openshift_storage_glusterfs_registry_is_native | default(True) | bool
  34. - include_role:
  35. name: openshift_storage_glusterfs
  36. tasks_from: kernel_modules.yml
  37. when:
  38. - openshift_storage_glusterfs_registry_is_native | default(True) | bool
  39. - name: Configure GlusterFS
  40. hosts: oo_first_master
  41. tasks:
  42. - name: setup glusterfs
  43. include_role:
  44. name: openshift_storage_glusterfs
  45. when: groups.oo_glusterfs_to_config | default([]) | count > 0
  46. - name: GlusterFS Install Checkpoint End
  47. hosts: all
  48. gather_facts: false
  49. tasks:
  50. - name: Set GlusterFS install 'Complete'
  51. run_once: true
  52. set_stats:
  53. data:
  54. installer_phase_glusterfs:
  55. status: "Complete"
  56. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"