
Ceph Create
CertifiedCreate an RBD image
Ceph Create
Create an RBD image
Calls POST /api/block/image. Some Ceph versions process image creation asynchronously via the Dashboard task manager, so the follow-up fetch of the resulting image may briefly 404 right after the POST; this task retries it for up to ~10 seconds (10 attempts, 1s apart) before failing.
type: io.kestra.plugin.ceph.rbd.images.CreateExamples
Create a 10 GiB RBD image
id: create_rbd_image
namespace: company.team
tasks:
- id: create_image
type: io.kestra.plugin.ceph.rbd.images.Create
host: "ceph-mgr.internal"
username: "admin"
password: "{{ secret('CEPH_DASHBOARD_PASSWORD') }}"
poolName: "rbd"
imageName: "data-volume"
size: 10737418240
Properties
host *Requiredstring
Ceph Dashboard host
Hostname or IP address of the Ceph Manager Dashboard. Must be reachable from the Kestra worker.
imageName *Requiredstring
Image name
Name of the RBD image to create.
poolName *Requiredstring
Pool name
Pool the image is created in.
size *Requiredintegerstring
Size
Image size in bytes, e.g. 10737418240 for 10 GiB.
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.
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
name string
Image name
Name of the RBD image.
obj_size integer
Object size
Size of the RADOS objects backing the image, in bytes.
pool_name string
Pool name
Name of the pool the image belongs to.
size integer
Size
Size of the image in bytes.