config.yml 1.9 KB

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