diff --git a/manifests/consoleauth.pp b/manifests/consoleauth.pp deleted file mode 100644 index 4546164f9..000000000 --- a/manifests/consoleauth.pp +++ /dev/null @@ -1,31 +0,0 @@ -# == Class: nova::consoleauth -# -# Installs and configures consoleauth service -# -# The consoleauth service is required for vncproxy auth -# for Horizon -# -# DEPRECATED! -# -# === Parameters -# -# [*enabled*] -# (optional) Whether the nova consoleauth service will be run -# Defaults to true -# -# [*manage_service*] -# (optional) Whether to start/stop the service -# Defaults to true -# -# [*ensure_package*] -# (optional) Whether the nova consoleauth package will be installed -# Defaults to 'present' -# -class nova::consoleauth( - $enabled = true, - $manage_service = true, - $ensure_package = 'present' -) { - - warning('nova::consoleauth is deprecated and has no effect') -} diff --git a/manifests/init.pp b/manifests/init.pp index dd9885d44..1155ea188 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -419,10 +419,6 @@ # exceptions in the API service # Defaults to undef # -# [*upgrade_level_consoleauth*] -# (optional) Sets a version cap for messages sent to consoleauth services -# Defaults to undef -# class nova( $ensure_package = 'present', $database_connection = undef, @@ -516,7 +512,6 @@ class nova( $notify_api_faults = undef, $image_service = undef, $notify_on_api_faults = undef, - $upgrade_level_consoleauth = undef, ) inherits nova::params { include ::nova::deps @@ -537,10 +532,6 @@ class nova( warning('The notify_on_api_faults parameter is deprecated.') } - if $upgrade_level_consoleauth { - warning('The nova::upgrade_level_consoleauth parameter is deprecated and has no effect') - } - if $image_service { warning('The unused image_service parameter is deprecated, as we are \ already using python-glanceclient instead of old glance client.') diff --git a/releasenotes/notes/remove-consoleauth-063eb73b3ec5c1e3.yaml b/releasenotes/notes/remove-consoleauth-063eb73b3ec5c1e3.yaml new file mode 100644 index 000000000..695fc49ce --- /dev/null +++ b/releasenotes/notes/remove-consoleauth-063eb73b3ec5c1e3.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - | + The deprecated parameter nova::upgrade_level_consoleauth and the class + nova::consoleauth is now removed.