20 lines
383 B
YAML
20 lines
383 B
YAML
---
|
|
|
|
- name: install on ubuntu
|
|
ansible.builtin.include_role:
|
|
name: geerlingguy.glusterfs
|
|
when: ansible_architecture != 'armv7l'
|
|
|
|
- include_tasks: install.yaml
|
|
when: ansible_architecture == 'armv7l'
|
|
|
|
- include_tasks: manage_volumes.yml
|
|
|
|
## doesn't work
|
|
#- name: "check the underlying config"
|
|
# include_tasks: recover_nodes.yaml
|
|
|
|
#- include_tasks: prometheus_exporter.yml
|
|
|
|
|