Restore nova-consoleauth to install docs
The installation of the nova-consoleauth service was erroneously removed from the docs prematurely. The nova-consoleauth service is still being used in Rocky, with the removal being possible in Stein. This should have been fixed as part of change Ibbdc7c50c312da2acc59dfe64de95a519f87f123 but was missed. This is also related to the release note update in Rocky under change Ie637b4871df8b870193b5bc07eece15c03860c06. Co-Authored-By: Matt Riedemann <mriedem.os@gmail.com> Closes-Bug: #1793255 Related-Bug: #1798188 Change-Id: Ied268da9e70bd2807c2dfe7a479181fbec52979d
This commit is contained in:
parent
3b2e42f371
commit
983e6ea551
@ -89,7 +89,8 @@ configuration.
|
||||
.. deprecated:: 18.0.0
|
||||
|
||||
``nova-consoleauth`` is deprecated since 18.0.0 (Rocky) and will be removed
|
||||
in an upcoming release.
|
||||
in an upcoming release. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
|
||||
noVNC-based VNC console
|
||||
|
@ -54,7 +54,8 @@ responsibilities of services and drivers are:
|
||||
.. deprecated:: 18.0.0
|
||||
|
||||
``nova-consoleauth`` is deprecated since 18.0.0 (Rocky) and will be removed
|
||||
in an upcoming release.
|
||||
in an upcoming release. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
``nova-objectstore``
|
||||
A simple file-based storage system for images that replicates most of the S3
|
||||
|
@ -27,7 +27,8 @@ Auth service, which provides authentication for Nova consoles.
|
||||
.. deprecated:: 18.0.0
|
||||
|
||||
`nova-consoleauth` is deprecated since 18.0.0 (Rocky) and will be removed in
|
||||
an upcoming release.
|
||||
an upcoming release. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
Options
|
||||
=======
|
||||
|
@ -282,11 +282,18 @@ Install and configure components
|
||||
|
||||
#. Install the packages:
|
||||
|
||||
.. note:: ``nova-consoleauth`` is deprecated since 18.0.0 (Rocky) and will
|
||||
be removed in an upcoming release. Console proxies should be
|
||||
deployed per cell. If performing a fresh install (not an upgrade),
|
||||
then you likely do not need to install the ``nova-consoleauth``
|
||||
service. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# zypper install openstack-nova-api openstack-nova-scheduler \
|
||||
openstack-nova-conductor openstack-nova-novncproxy \
|
||||
openstack-nova-placement-api iptables
|
||||
openstack-nova-conductor openstack-nova-consoleauth \
|
||||
openstack-nova-novncproxy openstack-nova-placement-api iptables
|
||||
|
||||
#. Edit the ``/etc/nova/nova.conf`` file and complete the following actions:
|
||||
|
||||
@ -502,8 +509,10 @@ Finalize installation
|
||||
.. code-block:: console
|
||||
|
||||
# systemctl enable openstack-nova-api.service \
|
||||
openstack-nova-scheduler.service openstack-nova-conductor.service \
|
||||
openstack-nova-novncproxy.service
|
||||
openstack-nova-consoleauth.service openstack-nova-scheduler.service \
|
||||
openstack-nova-conductor.service openstack-nova-novncproxy.service
|
||||
# systemctl start openstack-nova-api.service \
|
||||
openstack-nova-scheduler.service openstack-nova-conductor.service \
|
||||
openstack-nova-novncproxy.service
|
||||
openstack-nova-consoleauth openstack-nova-scheduler.service \
|
||||
openstack-nova-conductor.service openstack-nova-novncproxy.service
|
||||
|
||||
Note again that the ``nova-consoleauth`` service may not be necessary here.
|
||||
|
@ -504,11 +504,18 @@ Finalize installation
|
||||
|
||||
* Start the Compute services and configure them to start when the system boots:
|
||||
|
||||
.. note:: ``nova-consoleauth`` is deprecated since 18.0.0 (Rocky) and will
|
||||
be removed in an upcoming release. Console proxies should be
|
||||
deployed per cell. If performing a fresh install (not an upgrade),
|
||||
then you likely do not need to install the ``nova-consoleauth``
|
||||
service. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# systemctl enable openstack-nova-api.service \
|
||||
openstack-nova-scheduler.service openstack-nova-conductor.service \
|
||||
openstack-nova-novncproxy.service
|
||||
openstack-nova-consoleauth openstack-nova-scheduler.service \
|
||||
openstack-nova-conductor.service openstack-nova-novncproxy.service
|
||||
# systemctl start openstack-nova-api.service \
|
||||
openstack-nova-scheduler.service openstack-nova-conductor.service \
|
||||
openstack-nova-novncproxy.service
|
||||
openstack-nova-consoleauth openstack-nova-scheduler.service \
|
||||
openstack-nova-conductor.service openstack-nova-novncproxy.service
|
||||
|
@ -274,10 +274,17 @@ Install and configure components
|
||||
|
||||
#. Install the packages:
|
||||
|
||||
.. note:: ``nova-consoleauth`` is deprecated since 18.0.0 (Rocky) and will
|
||||
be removed in an upcoming release. Console proxies should be
|
||||
deployed per cell. If performing a fresh install (not an upgrade),
|
||||
then you likely do not need to install the ``nova-consoleauth``
|
||||
service. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# apt install nova-api nova-conductor nova-novncproxy nova-scheduler \
|
||||
nova-placement-api
|
||||
# apt install nova-api nova-conductor nova-consoleauth \
|
||||
nova-novncproxy nova-scheduler nova-placement-api
|
||||
|
||||
#. Edit the ``/etc/nova/nova.conf`` file and complete the following actions:
|
||||
|
||||
@ -478,6 +485,9 @@ Finalize installation
|
||||
.. code-block:: console
|
||||
|
||||
# service nova-api restart
|
||||
# service nova-consoleauth restart
|
||||
# service nova-scheduler restart
|
||||
# service nova-conductor restart
|
||||
# service nova-novncproxy restart
|
||||
|
||||
Note again that the ``nova-consoleauth`` service may not be necessary here.
|
||||
|
@ -68,7 +68,8 @@ OpenStack Compute consists of the following areas and their components:
|
||||
.. deprecated:: 18.0.0
|
||||
|
||||
``nova-consoleauth`` is deprecated since 18.0.0 (Rocky) and will be removed
|
||||
in an upcoming release.
|
||||
in an upcoming release. See
|
||||
:oslo.config:option:`workarounds.enable_consoleauth` for details.
|
||||
|
||||
``nova-novncproxy`` daemon
|
||||
Provides a proxy for accessing running instances through a VNC connection.
|
||||
|
Loading…
Reference in New Issue
Block a user