Change server type
You can change the type of cloud server — make an uninterruptible server interruptible and vice versa.
carefully
An interruptible server will be stopped by Selectel at any time within 24 hours of creation. You can only change the server type to interruptable once every 24 hours.
Control panel
OpenStack CLI
- In the dashboard, on the top menu, click Products and select Cloud Servers.
- Open the server page → Configuration tab.
- In the Server Type block, click .
- Check the new server cost and click Change.
- Open the OpenStack CLI.
- Change the server type:
-
on the interruptible:
openstack server set \
--tag preemptible \
--os-compute-api-version 2.72 \
<server> -
or uninterrupted:
openstack server unset \
--tag preemptible \
--os-compute-api-version 2.72 \
<server>Specify
<server>
— Server ID or name, can be viewed using theopenstack server list
command.