From 152a75995e31d4efe0b01986c260b3f81a1f98b1 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 23 Oct 2017 17:19:53 +0000 Subject: [PATCH] Oh. "replicas" cannot be 1. --- roles/gluster/consolidated/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/gluster/consolidated/tasks/main.yml b/roles/gluster/consolidated/tasks/main.yml index 1026df29a4..e3520671f1 100644 --- a/roles/gluster/consolidated/tasks/main.yml +++ b/roles/gluster/consolidated/tasks/main.yml @@ -56,7 +56,8 @@ state: present name: "{{ gluster_brick_name }}" brick: "{{ gluster_brick_dir }}" - replicas: "{{ groups[gluster_server_group] | count }}" + # This cannot be '1' + #replicas: "{{ groups[gluster_server_group] | count }}" cluster: "{{ groups[gluster_server_group] | join(',') }}" host: "{{ inventory_hostname }}" force: yes