Browse Source

Fixes issue #5299 (#5300)

pull/5338/head
holmesb 5 years ago
committed by Kubernetes Prow Robot
parent
commit
bc3a8a0039
1 changed files with 13 additions and 1 deletions
  1. 14
      contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/main.yml

14
contrib/network-storage/glusterfs/roles/glusterfs/server/tasks/main.yml

@ -36,7 +36,7 @@
- "{{ gluster_brick_dir }}"
- "{{ gluster_mount_dir }}"
- name: Configure Gluster volume.
- name: Configure Gluster volume with replicas
gluster_volume:
state: present
name: "{{ gluster_brick_name }}"
@ -46,6 +46,18 @@
host: "{{ inventory_hostname }}"
force: yes
run_once: true
when: groups['gfs-cluster']|length > 1
- name: Configure Gluster volume without replicas
gluster_volume:
state: present
name: "{{ gluster_brick_name }}"
brick: "{{ gluster_brick_dir }}"
cluster: "{% for item in groups['gfs-cluster'] -%}{{ hostvars[item]['ip']|default(hostvars[item].ansible_default_ipv4['address']) }}{% if not loop.last %},{% endif %}{%- endfor %}"
host: "{{ inventory_hostname }}"
force: yes
run_once: true
when: groups['gfs-cluster']|length <= 1
- name: Mount glusterfs to retrieve disk size
mount:

Loading…
Cancel
Save