From 22cea7eb0e9edce917a935fe9801f96d09f1ae74 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 20 Mar 2020 14:56:47 -0400 Subject: [PATCH] mgr/rook: do not create radosgw pools First, we don't know how big they should be or what they should look like. The caller should already know that, and/or radosgw can create the pools itself. This depends on https://github.com/rook/rook/pull/5058 Signed-off-by: Sage Weil --- src/pybind/mgr/rook/rook_cluster.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/pybind/mgr/rook/rook_cluster.py b/src/pybind/mgr/rook/rook_cluster.py index d603ebceee1..414e6709f07 100644 --- a/src/pybind/mgr/rook/rook_cluster.py +++ b/src/pybind/mgr/rook/rook_cluster.py @@ -433,18 +433,6 @@ class RookCluster(object): namespace=self.rook_env.namespace ), spec=cos.Spec( - metadataPool=cos.MetadataPool( - failureDomain='host', - replicated=cos.Replicated( - size=1 - ) - ), - dataPool=cos.DataPool( - failureDomain='host', - replicated=cos.Replicated( - size=1 - ) - ), gateway=cos.Gateway( type='s3', port=port, -- 2.39.5