Remove use_local parameter
use_local parameter is deprecated, has no effect and will be removed in the future. Change-Id: I632b826465244180cdd361d23455a5e3ce1df11a
This commit is contained in:
@@ -27,26 +27,14 @@
|
|||||||
# by the conductor service which is responsible for creating the service entries.
|
# by the conductor service which is responsible for creating the service entries.
|
||||||
# Defaults to $::os_service_default
|
# Defaults to $::os_service_default
|
||||||
#
|
#
|
||||||
# DEPRECATED PARAMETERS
|
|
||||||
#
|
|
||||||
# [*use_local*]
|
|
||||||
# (optional) Perform nova-conductor operations locally
|
|
||||||
# Defaults to undef
|
|
||||||
#
|
|
||||||
class nova::conductor(
|
class nova::conductor(
|
||||||
$enabled = true,
|
$enabled = true,
|
||||||
$manage_service = true,
|
$manage_service = true,
|
||||||
$ensure_package = 'present',
|
$ensure_package = 'present',
|
||||||
$workers = $::os_workers,
|
$workers = $::os_workers,
|
||||||
$enable_new_services = $::os_service_default,
|
$enable_new_services = $::os_service_default,
|
||||||
# DEPREACTED PARAMETERS
|
|
||||||
$use_local = undef,
|
|
||||||
) {
|
) {
|
||||||
|
|
||||||
if $use_local {
|
|
||||||
warning('use_local parameter is deprecated, has no effect and will be dropped in a future release.')
|
|
||||||
}
|
|
||||||
|
|
||||||
include ::nova::deps
|
include ::nova::deps
|
||||||
include ::nova::db
|
include ::nova::db
|
||||||
include ::nova::params
|
include ::nova::params
|
||||||
|
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- Remove use_local parameter
|
||||||
|
use_local parameter is deprecated, has no effect
|
||||||
|
and will be removed in the future.
|
Reference in New Issue
Block a user