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