config.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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: Configure GlusterFS hosts
  14. hosts: glusterfs
  15. tasks:
  16. - import_role:
  17. name: openshift_storage_glusterfs
  18. tasks_from: firewall.yml
  19. when: openshift_storage_glusterfs_is_native | default(True) | bool
  20. - import_role:
  21. name: openshift_storage_glusterfs
  22. tasks_from: host_services.yml
  23. when: openshift_storage_glusterfs_is_native | default(True) | bool
  24. - name: Configure GlusterFS registry hosts
  25. hosts: glusterfs_registry
  26. tasks:
  27. - import_role:
  28. name: openshift_storage_glusterfs
  29. tasks_from: firewall.yml
  30. when: openshift_storage_glusterfs_registry_is_native | default(True) | bool
  31. - import_role:
  32. name: openshift_storage_glusterfs
  33. tasks_from: host_services.yml
  34. when: openshift_storage_glusterfs_registry_is_native | default(True) | bool
  35. - name: Load kernel modules for nodes
  36. hosts: oo_nodes_to_config
  37. tasks:
  38. - import_role:
  39. name: openshift_storage_glusterfs
  40. tasks_from: kernel_modules.yml
  41. when: openshift_storage_glusterfs_registry_is_native | default(True) | bool
  42. - name: Configure GlusterFS
  43. hosts: oo_first_master
  44. tasks:
  45. - name: setup glusterfs
  46. import_role:
  47. name: openshift_storage_glusterfs
  48. when: groups.oo_glusterfs_to_config | default([]) | count > 0
  49. - name: GlusterFS Install Checkpoint End
  50. hosts: all
  51. gather_facts: false
  52. tasks:
  53. - name: Set GlusterFS install 'Complete'
  54. run_once: true
  55. set_stats:
  56. data:
  57. installer_phase_glusterfs:
  58. status: "Complete"
  59. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"