From 9546f34c34826807e9f23c1de786afd17e497c2f Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:42:22 -0400 Subject: [PATCH] Move netmask to separate config part 3 --- roles/pvc/tasks/ceph/bootstrap.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/pvc/tasks/ceph/bootstrap.yml b/roles/pvc/tasks/ceph/bootstrap.yml index 2572c8c..8e167e2 100644 --- a/roles/pvc/tasks/ceph/bootstrap.yml +++ b/roles/pvc/tasks/ceph/bootstrap.yml @@ -59,8 +59,8 @@ line: "{{ item }}" state: present with_items: - - "public network = {{ pvc_storage_subnet }}" - - "cluster network = {{ pvc_storage_subnet }}" + - "public network = {{ pvc_storage_subnet }}/{{ pvc_storage_netmask }}" + - "cluster network = {{ pvc_storage_subnet }}/{{ pvc_storage_netmask }}" - "auth cluster required = cephx" - "auth service required = cephx" - "auth client required = cephx"