From 2c370226927e28de55b60b97ef3cd20221d0d6a3 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 6 Aug 2021 21:15:43 +0900 Subject: [PATCH] Gnocchi: Use rados library in CentOS The lados library is now preferrred over cradox even in CentOS. The manage_cradox parameter is already deprecated and has no effect[1]. [1] 3591bd8acc1ac49feb2f0fa33a45a09e94e08407 Change-Id: I56a99426047c065a7a61ce7e1553782f4a8a5bd7 --- manifests/gnocchi.pp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/manifests/gnocchi.pp b/manifests/gnocchi.pp index 38afad7a8..72ccc0a92 100644 --- a/manifests/gnocchi.pp +++ b/manifests/gnocchi.pp @@ -77,8 +77,7 @@ class openstack_integration::gnocchi ( class { 'gnocchi::storage::ceph': ceph_username => 'openstack', ceph_keyring => '/etc/ceph/ceph.client.openstack.keyring', - manage_cradox => ($::osfamily == 'RedHat'), - manage_rados => ($::osfamily == 'Debian'), + manage_rados => true, } # make sure ceph pool exists before running gnocchi (dbsync & services) Exec['create-gnocchi'] -> Exec['gnocchi-db-sync']