Creating a Storage Pool
Create a storage pool in the Ceph cluster, including creating a storage pool, enabling RADOS Block Storage (RBD), and verifying the creation.
- Create a storage pool on the ceph1 node.
ceph osd pool create kubernetes 128
kubernetes indicates the name of the storage pool to be created and 128 indicates the number of placement groups (PGs). Set them as required.
- Enable the RBD function for the storage pool.
ceph osd pool application enable kubernetes rbd
- Check whether the storage pool is created successfully.
ceph osd lspools
Expected result:

Parent topic: Integrating Ceph with Kubernetes