41 lines
611 B
Plaintext
41 lines
611 B
Plaintext
|
POST http://localhost:3450/volume
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{
|
||
|
"name": "testvol",
|
||
|
"size_in_bytes": 102400
|
||
|
}
|
||
|
|
||
|
###
|
||
|
GET http://localhost:3450/volume/testvol
|
||
|
Accept: application/json
|
||
|
|
||
|
###
|
||
|
POST http://localhost:3450/volume/mount
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{
|
||
|
"name": "testvol",
|
||
|
"mountpoint": "/mounted-testvol"
|
||
|
}
|
||
|
|
||
|
###
|
||
|
POST http://localhost:3450/volume/unmount/testvol
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{}
|
||
|
|
||
|
###
|
||
|
POST http://localhost:3450/volume/transfer/testvol/to/worker-4.k8s
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{}
|
||
|
|
||
|
###
|
||
|
DELETE http://localhost:3450/volume/testvol
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{}
|
||
|
|
||
|
###
|