blob: 8aa30fc9640e026638931d47d28ee68bcc4a9ecc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- name: Common setup procedures
hosts: ands
roles:
- role: ands_facts
- name: Configure GlusterFS cluster
hosts: ands_servers
roles:
- role: glusterfs
vars:
glusterfs_network: "{{ ands_storage_network }}"
glusterfs_servers: "{{ ands_storage_servers }}"
glusterfs_bricks_path: "{{ ands_data_path }}/glusterfs"
glusterfs_domains: "{{ ands_storage_domains }}"
|