Describe the issue: - The documentation "Installing the iSCSI gateway" is missing to create the pool Describe the task you were trying to accomplish: In "10.3.2. Installing the Ceph iSCSI gateway using the command-line interface" Suggestions for improvement: Add steps to create pool prior to "4. Create a configuration file on a Ceph iSCSI gateway node." Document URL: https://access.redhat.com/documentation/en-us/red_hat_ceph_storage/5/html-single/block_device_guide/index#installing-the-ceph-iscsi-gateway-using-cli_block Chapter/Section Number and Title: 10.3.2. Installing the Ceph iSCSI gateway using the command-line interface Product Version: RHCS 5
@Masauso, We need to add a step to create a pool for iscsi before the step 4 as per the doc https://access.redhat.com/documentation/en-us/red_hat_ceph_storage/5/html-single/block_device_guide/index#installing-the-ceph-iscsi-gateway-using-cli_block Add steps for creating a pool where ceph-iscsi config data is stored. Example : To create an rbd pool, execute the following: Syntax ceph osd pool create POOL_NAME PG_NUM ceph osd pool application enable POOL_NAME rbd rbd pool init -p POOL_NAME Example [root@rbd-client ~]# ceph osd pool create pool1 [root@rbd-client ~]# ceph osd pool application enable pool1 rbd [root@rbd-client ~]# rbd pool init -p pool1
Changes are implemented. verified