{"id":20111764,"url":"https://github.com/openstack/rbd-iscsi-client","last_synced_at":"2026-05-31T21:32:02.806Z","repository":{"id":66174851,"uuid":"336180695","full_name":"openstack/rbd-iscsi-client","owner":"openstack","description":"REST client that talks to ceph-iscsi's rbd-target-api to export rbd images/volumes to an iSCSI initiator. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2024-04-19T14:50:49.000Z","size":80,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-02T18:50:40.650Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/rbd-iscsi-client","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openstack.png","metadata":{"files":{"readme":"README.rst","changelog":"ChangeLog","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-05T06:07:45.000Z","updated_at":"2022-09-09T14:33:41.000Z","dependencies_parsed_at":"2024-01-11T18:05:43.444Z","dependency_job_id":"36d7b2b3-11ca-4567-8cec-760955f3e155","html_url":"https://github.com/openstack/rbd-iscsi-client","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/openstack/rbd-iscsi-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Frbd-iscsi-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Frbd-iscsi-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Frbd-iscsi-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Frbd-iscsi-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/rbd-iscsi-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Frbd-iscsi-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33750474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T18:17:39.054Z","updated_at":"2026-05-31T21:32:02.790Z","avatar_url":"https://github.com/openstack.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"================\nRBD iSCSI Client\n================\n\n\n.. image:: https://img.shields.io/pypi/v/rbd-iscsi-client.svg\n        :target: https://pypi.python.org/pypi/rbd-iscsi-client\n\n.. image:: https://img.shields.io/pypi/pyversions/rbd-iscsi-client.svg\n        :target: https://pypi.python.org/pypi/rbd-iscsi-client\n\n.. image:: https://img.shields.io/:license-apache-blue.svg\n   :target: http://www.apache.org/licenses/LICENSE-2.0\n\n\nOverview\n--------\nThis python package is a client that talks to the ceph-iscsi rbd-target-api.\nThe rbd-target-api coordinates the rbd volume exports via iSCSI.\n\nRequirements\n------------\nThis package requires a running ceph cluster that has the ceph-iscsi\ngateway tools installed properly and running.  The rbd-target-api must\nbe configured and running.\n\nInstallation\n------------\n``pip install rbd-iscsi-client``\n\nFeatures\n--------\n\nThis is a REST client that talks to ceph-iscsi's rbd-target-api to export\nrbd images/volumes to an iSCSI initiator.\n\n* get_api - Get all the api endpoints\n* get_config - get the entire gateway config\n* get_targets - Get all of the target_iqn's defined in the gateways\n* create_target_iqn - create a new target_iqn\n* delete_target_iqn - delete a target_iqn\n* get_clients - get the clients (initiators) defined in the gateways\n* get_client_info - get the client information\n* create_client - Register a new client (initiator) with the gateways\n* delete_client - unregister a client (initiator) from the gateways\n* set_client_auth - set CHAP credentials for the client (initiator)\n* get_disks - get list of volumes defined to the gateways\n* create_disk - create a new volume/disk that the gateways can export\n* find_disk - Find a disk that the gateway knows about\n* delete_disk - delete a disk from the gateway and pool\n* register_disk - Make the disk available to export to a client.\n* unregister_disk - Make a disk unavailable to export to a client.\n* export_disk - Export a registered disk to a client (initiator)\n* unexport_disk - unexport a disk from a client (initiator)\n\nCredits\n-------\n\nThis package makes use of the rbd-target-api from ceph-iscsi_ package.\n\n.. _ceph-iscsi: https://github.com/ceph/ceph-iscsi\n\nThis package was originally created with Cookiecutter_ and the\n`audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Frbd-iscsi-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Frbd-iscsi-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Frbd-iscsi-client/lists"}