summaryrefslogtreecommitdiffstats
path: root/roles/glusterfs/tasks/create_domain.yml
blob: 76623f226030eebcaa7a95353e780794a555e682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Get list of existing gluster volumes
  shell: "gluster volume info"
  changed_when: false
  register: gv_results


- name: Configure volumes
  include_tasks: create_volume.yml
  with_dict: "{{ domain.volumes }}"
  when: volume_string not in gv_results.stdout_lines
  vars:
    volume_string: "Volume Name: {{ volume.key }}"
    domain_servers: "{{ groups[domain.servers] | map('extract', hostvars, 'ands_storage_hostname') | list }}"
  loop_control:
    loop_var: volume