setup_nodes.yml 699 B

123456789101112131415161718
  1. ---
  2. # This playbook is designed to ensure an existing cluster without gluster support
  3. # gets the necessary modules and packages installed on all nodes to support
  4. # pods utilizing gluster volumes.
  5. # This playbooks is not intended for scaleup of existing clusters that already
  6. # have gluster deployed.
  7. - name: Install gluster node dependencies for pod volume support
  8. hosts: oo_nodes_to_config
  9. tasks:
  10. - import_role:
  11. name: openshift_node
  12. tasks_from: glusterfs.yml
  13. - import_role:
  14. name: openshift_storage_glusterfs
  15. tasks_from: kernel_modules.yml
  16. when:
  17. - "inventory_hostname not in groups['glusterfs']"
  18. - "inventory_hostname not in groups['glusterfs_registry']"