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 file a ticket and specify the new storage size in it.
Control panel
OpenStack API
-
В control panels from the top menu, press Products and select File storage.
-
Open the file storage page → tab Settings.
-
In the field Size click Modify.
-
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 .
-
Get X-Auth-Token (scope: project) — IAM token for the project.
-
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: <x-auth-token>' \
-H 'Content-Type: application/json;charset=utf-8' \
--data-raw '{"os-extend":{"new_size":<filestorage_size>}}'Specify:
<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 ;<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.