--- - hosts: glusterfs gather_facts: true become: false tasks: - name: "Install GlusterFS on all nodes" ansible.builtin.package: name: glusterfs-server state: present become: true - name: "Start and enable GlusterFS service" ansible.builtin.service: name: glusterd state: started enabled: true become: true