Remove consoleauth

Change-Id: Icad191aefa6b12a31f10fdb33d74b5de0878b486
This commit is contained in:
Tobias Urdin 2019-11-22 21:50:06 +01:00
parent 890dc6fa44
commit 31a1b83a6d
3 changed files with 5 additions and 40 deletions

View File

@ -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')
}

View File

@ -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.')

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The deprecated parameter nova::upgrade_level_consoleauth and the class
nova::consoleauth is now removed.