By lange
Hi there,
I’m writing a script to automate immutable deployments to droplets. Because these deployments are immutable, a new droplet is created for every deploy and the previous droplet is destroyed. State is stored on a Block Storage volume.
I can see that volumes can be referenced from /dev/by-id, /dev/by-label, /dev/by-path, and /dev/by-uuid. However, the uuids used in the by-uuid folder do not seem to be the same as the Volume ID returned by the DigitalOcean API.
My question is: given a Volume object obtained from the DO API, can I programmatically determine which device in /dev that Volume corresponds to?
Thanks, Alex
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Yes. The UUID is not used but the name you supply for the volume is used. For example:
root@sgp1-volume-test:~# ls -l /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 9 Mar 3 17:31 scsi-0DO_Volume_volume-sgp1-01 -> ../../sda
In this case, the name given to this volume when it was created is the section after Volume_ so this disk was named volume-sgp1-01 when it was created.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.