From bb37df19e54992fb5ae74573d975cd749099224d Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 24 May 2019 11:50:42 +0100 Subject: [PATCH] Remove nova-consoleauth The nova-consoleauth service was deprecated during the Rocky release [1] and has not been necessary since unless you're using cells v1. As Kolla has never supported cells v1, which is finally being removed during Train [2], we can get ahead of the curve and stop deploying nova-consoleauth immediately. [1] https://specs.openstack.org/openstack/nova-specs/specs/rocky/implemented/convert-consoles-to-objects.html [2] https://blueprints.launchpad.net/nova/+spec/remove-cells-v1/ Change-Id: I19d467adbc1dab6709ce9667b18f1bb6dff12c1e Signed-off-by: Stephen Finucane Depends-On: I099080979f5497537e390f531005a517ab12aa7a --- docker/nova/nova-consoleauth/Dockerfile.j2 | 31 ------------------- ...ove-nova-consoleauth-caf1c027b6403dc1.yaml | 8 +++++ 2 files changed, 8 insertions(+), 31 deletions(-) delete mode 100644 docker/nova/nova-consoleauth/Dockerfile.j2 create mode 100644 releasenotes/notes/remove-nova-consoleauth-caf1c027b6403dc1.yaml diff --git a/docker/nova/nova-consoleauth/Dockerfile.j2 b/docker/nova/nova-consoleauth/Dockerfile.j2 deleted file mode 100644 index 6974bde2a1..0000000000 --- a/docker/nova/nova-consoleauth/Dockerfile.j2 +++ /dev/null @@ -1,31 +0,0 @@ -FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }} -LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}" - -{% block nova_consoleauth_header %}{% endblock %} - -{% import "macros.j2" as macros with context %} - -{% if install_type == 'binary' %} - {% if base_package_type == 'rpm' %} - - {% set nova_consoleauth_packages = [ - 'openstack-nova-console' - ] %} - - {% elif base_package_type == 'deb' %} - - {% set nova_consoleauth_packages = [ - 'nova-consoleauth', - 'python3-memcache' - ] %} - - {% endif %} - -{{ macros.install_packages(nova_consoleauth_packages | customizable("packages")) }} - -{% endif %} - -{% block nova_consoleauth_footer %}{% endblock %} -{% block footer %}{% endblock %} - -USER nova diff --git a/releasenotes/notes/remove-nova-consoleauth-caf1c027b6403dc1.yaml b/releasenotes/notes/remove-nova-consoleauth-caf1c027b6403dc1.yaml new file mode 100644 index 0000000000..a99697a190 --- /dev/null +++ b/releasenotes/notes/remove-nova-consoleauth-caf1c027b6403dc1.yaml @@ -0,0 +1,8 @@ +--- +upgrade: + - | + The ``nova-consoleauth`` image has been removed. This service has been + `deprecated in nova since Rocky`__ and has not been used by other nova + services since. + + __ https://specs.openstack.org/openstack/nova-specs/specs/rocky/implemented/convert-consoles-to-objects.html