- Newest
- Most votes
- Most comments
"Enumerated" doesn't mean "mounted". And in the documentation page you've linked it talks about how to prepare instance store volumes for use. Note that you may need to create a partition and create a filesystem on it. Again, that page talks to how to do that.
To find the device name, you can run lsblk -f- more detail is available in the documentation.
To mount a volume at boot, you'll need to add the device information to /etc/fstab. On first boot (in userdata), you should prepare the volume (the documentation above has the instructions), mount it and then modify fstab for future reboots.
Note that instance store volumes are ephemeral. It is possible that during a reboot we will move the instance to a new physical host; and it's highly likely that your instance will be on a new host if it is shut down and then restarted: In this case you should have a script that runs at boot to check the health of the filesystem; and if it isn't properly prepare to run mkfs again. Put another way: You should not count on data stored on an ephemeral volume to survive a restart. It might but it might not.
Relevant content
asked a year ago
