
Ceph List
CertifiedList RBD images
Ceph List
List RBD images
Calls GET /api/block/image, optionally scoped to a single pool, and flattens the pool-grouped response into a single list.
type: io.kestra.plugin.ceph.rbd.images.ListExamples
List RBD images in a pool
id: list_rbd_images
namespace: company.team
tasks:
- id: images
type: io.kestra.plugin.ceph.rbd.images.List
host: "ceph-mgr.internal"
username: "admin"
password: "{{ secret('CEPH_DASHBOARD_PASSWORD') }}"
poolName: "rbd"
Properties
host *Requiredstring
Ceph Dashboard host
Hostname or IP address of the Ceph Manager Dashboard. Must be reachable from the Kestra worker.
fetchType string
FETCHSTOREFETCHFETCH_ONENONEHow results are returned
FETCH (default) returns the images inline under images, STORE writes them to Kestra internal storage as Ion and returns a uri, FETCH_ONE returns only the first image, NONE returns just the count. Use STORE on clusters with a large number of images.
password string
Password
Password for the Ceph Dashboard account. Never logged. Required unless token is set; ignored otherwise.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
poolName string
Pool name
Restrict the listing to this pool. When omitted, images from every pool are returned.
port integerstring
8443Ceph Dashboard port
TCP port of the Ceph Manager Dashboard REST API. Defaults to 8443.
skipSsl booleanstring
falseSkip TLS certificate verification
When true, disables TLS certificate verification. Useful when the Ceph Manager Dashboard uses a self-signed certificate, which is the default on most Ceph deployments. Defaults to false (secure): enable it explicitly and only for trusted networks.
token string
Pre-obtained JWT
A JWT obtained from POST /api/auth, used directly instead of username/password. Reused as-is for every request in the execution. It expires (Ceph default 8h TTL) and is NOT auto-renewed, so do not use it in triggers or scheduled flows; use username/password there instead. Mutually exclusive with password: when set, username/password are ignored.
username string
Username
Ceph Dashboard account used to obtain a session token from POST /api/auth. Required unless token is set.
Outputs
images array
Images
Summary of each RBD image. Empty when fetchType is STORE or NONE.
io.kestra.plugin.ceph.rbd.images.RbdImageInfo
Image name
Name of the RBD image.
Object size
Size of the RADOS objects backing the image, in bytes.
Pool name
Name of the pool the image belongs to.
Size
Size of the image in bytes.
total integer
Total
Number of images returned.
uri string
uriURI
Storage URI of the Ion-serialized images. Set only when fetchType is STORE.