1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-10 00:25:24 +02:00
tldr/pages/common/exo-storage.md

25 lines
622 B
Markdown
Raw Normal View History

2025-05-28 10:54:30 +02:00
# exo storage
> Manage the Exoscale Simple Object Storage (SOS) service.
> More information: <https://community.exoscale.com/product/storage/object-storage/>.
- Create a new SOS bucket:
`exo storage mb {{bucket_name}}`
- Upload a file to a bucket:
`exo storage put {{file_path}} {{bucket_name}}/{{prefix/}}`
- List the objects within a bucket:
`exo storage ls {{bucket_name}}`
- Simulate the download of an object from a bucket:
`exo storage get {{bucket_name}}/{{object_key}} {{local_path}} --dry-run`
- Manage the metadata of an object:
`exo storage metadata add {{bucket_name}}/{{object_key}} {{key=value}}`