【个人记录】Ceph删除存储池

删除volunes池:

ceph osd pool delete --yes-i-really-really-mean-it volumes volumes

提示:

Error EBUSY: pool 'volumes' has tiers cache

这是因为有一层缓存池
需要先去除缓存叠加层

ceph osd tier rm volumes cache

再删除volunes池:

ceph osd pool delete --yes-i-really-really-mean-it volumes volumes

你可能感兴趣的:(ceph)