Manage glusterfs pool.
salt.states.glusterfs.
add_volume_bricks
(name, bricks)¶Add brick(s) to an existing volume
myvolume:
glusterfs.add_volume_bricks:
- bricks:
- host1:/srv/gluster/drive1
- host2:/srv/gluster/drive2
Replicated Volume:
glusterfs.add_volume_bricks:
- name: volume2
- bricks:
- host1:/srv/gluster/drive2
- host2:/srv/gluster/drive3
salt.states.glusterfs.
created
(name, bricks, stripe=False, replica=False, device_vg=False, transport='tcp', start=False, force=False)¶Check if volume already exists
myvolume:
glusterfs.created:
- bricks:
- host1:/srv/gluster/drive1
- host2:/srv/gluster/drive2
Replicated Volume:
glusterfs.created:
- name: volume2
- bricks:
- host1:/srv/gluster/drive2
- host2:/srv/gluster/drive3
- replica: 2
- start: True
salt.states.glusterfs.
peered
(name)¶Check if node is peered.
peer-cluster:
glusterfs.peered:
- name: two
peer-clusters:
glusterfs.peered:
- names:
- one
- two
- three
- four
salt.states.glusterfs.
started
(name)¶Check if volume has been started
mycluster:
glusterfs.started: []