summaryrefslogtreecommitdiffstats
path: root/roles/glusterfs/tasks/la/vols3.yml
blob: ada8f9512517a58dc804469e3d18a1e94782e654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: "Create {{ name }} volume"
  gluster_volume: 
    state: present
    name: "{{ name }}"
    host: "{{ ands_storage_hostname }}"
    cluster: "{{ domain_servers | join(',') }}"
    bricks: "{{ glusterfs_bricks_path }}/brick-{{ name }}"
    transport: "{{ glusterfs_transport }}"

- name: "Start {{ name }} volume"
  gluster_volume: state="started" name="{{ name }}"