You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I did run through the steps in the api docs
in the end the curl request looks like this
curl -X 'PATCH'
'https://192.168.1.240.nip.io/rest/v1/VirDomainBlockDevice/0bfca259-89ff-4b34-95b0-85d187fcd818'
-H 'accept: application/json'
-H 'Content-Type: application/json'
-d '{
"path": "scribe/e8eebdb5-a7bd-44ec-a16f-c8dc507dc8f8"
}'
but to get there you have to find the uuid for the appropriate iso file you want to mount
curl -X 'GET'
'https://192.168.1.240.nip.io/rest/v1/ISO'
-H 'accept: application/json'
and you have to find the blockdevice UUID for the VM you want to mount it to
curl -X 'GET'
'https://192.168.1.240.nip.io/rest/v1/VirDomain'
-H 'accept: application/json'
and in the blockDevs section - find the uuid of the iso device you want to mount to like this
and basically you are patching that path - which will be "" with the scribe device uuid you want to mount - then the rest should fill in.
Beta Was this translation helpful? Give feedback.
All reactions