From de1efbd62b9258630c2a2d55bfd12034cc8b603f Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Thu, 14 Jan 2021 09:52:22 -0800 Subject: [PATCH] cephadm: fix rgw osd cap tag The syntax is "allow rwx tag rgw *=*'. Sorry, I thought this would have gotten caught in testing :( Fixes: 373cc847cf0f8b4ec7aefbfe64c01c3f18a4e021 Signed-off-by: Patrick Donnelly --- src/pybind/mgr/cephadm/services/cephadmservice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/services/cephadmservice.py b/src/pybind/mgr/cephadm/services/cephadmservice.py index a2b26bf0690d5..45a41f708dc49 100644 --- a/src/pybind/mgr/cephadm/services/cephadmservice.py +++ b/src/pybind/mgr/cephadm/services/cephadmservice.py @@ -617,7 +617,7 @@ class RgwService(CephService): 'entity': self.get_auth_entity(rgw_id), 'caps': ['mon', 'allow *', 'mgr', 'allow rw', - 'osd', 'allow rwx tag rgw'], + 'osd', 'allow rwx tag rgw *=*'], }) return keyring -- 2.39.5