Increase file storage
Increase file storage
carefully
Once the file storage size has been increased, it cannot be reduced.
For your information
If you created file storage before June 13, 2023 through tech support, to increase your storage file a ticket and specify the new storage size. After increasing the storage, the tariff will change: we will refund the unused days of the previous tariff and charge you for the new one. This instruction describes how to increase the file storage created in the control panel.
Control panel
OpenStack API
- В control panels go to Cloud platform → File storage.
- Open the file storage page → tab Settings.
- In the field Size click Modify.
- Click .
-
In the query output, copy the value
X-Subject-Token
. -
Open the CLI.
-
Increase file storage:
curl 'https://<pool>.cloud.api.selcloud.ru/share/v2/shares/<filestorage_uuid>/action' \
-H 'X-Auth-Token: <token>' \
-H 'Content-Type: application/json;charset=utf-8' \
--data-raw '{"os-extend":{"new_size":<filestorage_size>}}'<pool>
— pool where the file storage is created, e.g.ru-9
. The address (URL) depends on the region and pool, you can look in the URL list;<filestorage_uuid>
— The ID of the file storage. You can view the ID in control panels: under Cloud platform → File storage → in the row of the desired storage, click ;<token>
— token that you copied in step 2;<filestorage_size>
— new file storage size in GB, e.g.150
. The volume limit is 50 TB.