config.yml 729 B

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Open firewall ports for GlusterFS nodes
  3. hosts: glusterfs
  4. tasks:
  5. - include_role:
  6. name: openshift_storage_glusterfs
  7. tasks_from: firewall.yml
  8. when:
  9. - openshift_storage_glusterfs_is_native | default(True) | bool
  10. - name: Open firewall ports for GlusterFS registry nodes
  11. hosts: glusterfs_registry
  12. tasks:
  13. - include_role:
  14. name: openshift_storage_glusterfs
  15. tasks_from: firewall.yml
  16. when:
  17. - openshift_storage_glusterfs_registry_is_native | default(True) | bool
  18. - name: Configure GlusterFS
  19. hosts: oo_first_master
  20. tasks:
  21. - name: setup glusterfs
  22. include_role:
  23. name: openshift_storage_glusterfs
  24. when: groups.oo_glusterfs_to_config | default([]) | count > 0