Merge "docs: Update resize doc"

This commit is contained in:
Zuul 2019-10-03 19:44:57 +00:00 committed by Gerrit Code Review
commit 5ee7a7d5da

View File

@ -5,7 +5,14 @@ Resize an instance
You can change the size of an instance by changing its flavor. This rebuilds You can change the size of an instance by changing its flavor. This rebuilds
the instance and therefore results in a restart. the instance and therefore results in a restart.
To resize an instance, use the :command:`openstack server resize` command: To list the VMs you want to resize, run:
.. code-block:: console
$ openstack server list
Once you have the name or UUID of the server you wish to resize, resize it
using the :command:`openstack server resize` command:
.. code-block:: console .. code-block:: console
@ -13,25 +20,17 @@ To resize an instance, use the :command:`openstack server resize` command:
.. note:: .. note::
By default, the :command:`openstack server resize` command gives By default, the :command:`openstack server resize` command gives the guest
the guest operating operating system a chance to perform a controlled shutdown before the
system a chance to perform a controlled shutdown before the instance instance is powered off and the instance is resized. This behavior can be
is powered off and the instance is resized. configured by the administrator but it can also be overridden on a per image
The shutdown behavior is configured by the basis using the ``os_shutdown_timeout`` image metadata setting. This allows
:oslo.config:option:`shutdown_timeout` parameter that can be set in the different types of operating systems to specify how much time they need to
``nova.conf`` file. Its value stands for the overall shut down cleanly. See :glance-doc:`Useful image properties
period (in seconds) a guest operating system is allowed <admin/useful-image-properties>` for details.
to complete the shutdown. The default timeout is 60 seconds.
The timeout value can be overridden on a per image basis Resizing can take some time. During this time, the instance status will be
by means of ``os_shutdown_timeout`` that is an image metadata ``RESIZE``:
setting allowing different types of operating systems to specify
how much time they need to shut down cleanly. See
:glance-doc:`Useful image properties <admin/useful-image-properties>`
for details.
Resizing can take some time.
During this time, the instance status will be ``RESIZE``:
.. code-block:: console .. code-block:: console
@ -47,17 +46,16 @@ You can now confirm the resize to change the status to ``ACTIVE``:
.. code-block:: console .. code-block:: console
$ openstack server resize --confirm SERVER $ openstack server resize confirm SERVER
.. note:: .. note::
The resized server may be automatically confirmed based on The resized server may be automatically confirmed based on the
the administrator's configuration of the deployment. administrator's configuration of the deployment.
If the resize fails or does not work as expected, you can revert the resize. If the resize does not work as expected, you can revert the resize. This will
This will revert the instance to the old flavor and change the status to revert the instance to the old flavor and change the status to ``ACTIVE``:
``ACTIVE``:
.. code-block:: console .. code-block:: console
$ openstack server resize --revert SERVER $ openstack server resize revert SERVER