Increase file storage
Once the file storage size is increased, it cannot be reduced. After the storage is increased, the tariff will change: we will refund the unused days of the previous tariff and charge you for the new one.
This instruction describes the increase in file storage that is created in the control panel after June 13, 2023.
If you created file storage through tech support before June 13, 2023, to increase your storage, create a ticket and specify the new storage size.
Control panel
OpenStack API
-
In the Control Panel, on the top menu, click Products and select File Storage.
-
Open the File Storage page → Settings tab.
-
In the Size field, click Edit.
-
Specify the size of the file storage.
-
Check the price of file storage. 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.
-
Click .
-
In the query output, copy the value of
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: <x_auth_token>' \
-H 'Content-Type: application/json;charset=utf-8' \
--data-raw '{"os-extend":{"new_size":<filestorage_size>}}'Specify:
<pool>
— pool in which the file storage is created, for exampleru-9
. Address (URL) depends on the region and pool, you can look in the URL list;<filestorage_uuuid>
— The ID of the file storage. You can view the ID in control panel under Cloud Platform → File storage → in the row of the desired storage, click ;<x_auth_token>
— The IAM token for the project you copied in step 2;<filestorage_size>
— new file storage size in GB, e.g.150
. The volume limit is 50 TB.