|
|
|
@ -242,38 +242,6 @@
|
|
|
|
|
#
|
|
|
|
|
# DEPRECATED PARAMETERS
|
|
|
|
|
#
|
|
|
|
|
# [*database_min_pool_size*]
|
|
|
|
|
# (optional) Minimum number of SQL connections to keep open in a pool.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_connection*]
|
|
|
|
|
# (optional) Connection url for the ironic database.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_max_retries*]
|
|
|
|
|
# (optional) Database reconnection retry times.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_idle_timeout*]
|
|
|
|
|
# (optional) Timeout before idle db connections are reaped.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_reconnect_interval*]
|
|
|
|
|
# (optional) Database reconnection interval in seconds.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_retry_interval*]
|
|
|
|
|
# (optional) Database reconnection interval in seconds.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_max_pool_size*]
|
|
|
|
|
# (optional) Maximum number of SQL connections to keep open in a pool.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*database_max_overflow*]
|
|
|
|
|
# (optional) If set, use this value for max_overflow with sqlalchemy.
|
|
|
|
|
# Defaults to: undef
|
|
|
|
|
#
|
|
|
|
|
# [*amqp_allow_insecure_clients*]
|
|
|
|
|
# (Optional) Accept clients using either SSL or plain TCP
|
|
|
|
|
# Defaults to undef.
|
|
|
|
@ -327,14 +295,6 @@ class ironic (
|
|
|
|
|
$notification_level = $::os_service_default,
|
|
|
|
|
$versioned_notifications_topics = $::os_service_default,
|
|
|
|
|
# DEPRECATED PARAMETERS
|
|
|
|
|
$database_min_pool_size = undef,
|
|
|
|
|
$database_connection = undef,
|
|
|
|
|
$database_max_retries = undef,
|
|
|
|
|
$database_idle_timeout = undef,
|
|
|
|
|
$database_reconnect_interval = undef,
|
|
|
|
|
$database_retry_interval = undef,
|
|
|
|
|
$database_max_pool_size = undef,
|
|
|
|
|
$database_max_overflow = undef,
|
|
|
|
|
$amqp_allow_insecure_clients = undef,
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
|
@ -347,42 +307,6 @@ class ironic (
|
|
|
|
|
will be removed in a future relese.')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_connection != undef {
|
|
|
|
|
warning('The database_connection parameter is deprecated and will be \
|
|
|
|
|
removed in a future realse. Use ironic::db::database_connection instead')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_max_retries!= undef {
|
|
|
|
|
warning('The database_max_retries parameter is deprecated and will be \
|
|
|
|
|
removed in a future realse. Use ironic::db::database_max_retries instead')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_idle_timeout != undef {
|
|
|
|
|
warning('The database_idle_timeout parameter is deprecated and will be \
|
|
|
|
|
removed in a future realse. Use ironic::db::database_connection_recycle_time \
|
|
|
|
|
instead')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_reconnect_interval != undef {
|
|
|
|
|
warning('The database_reconnect_interval parameter is deprecated \
|
|
|
|
|
has no effect now.')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_retry_interval != undef {
|
|
|
|
|
warning('The database_retry_interval parameter is deprecated and will be \
|
|
|
|
|
removed in a future realse. Use ironic::db::database_retry_interval instead')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_max_pool_size != undef {
|
|
|
|
|
warning('The database_max_pool_size parameter is deprecated and will be \
|
|
|
|
|
removed in a future realse. Use ironic::db::database_max_pool_size instead')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $database_max_overflow != undef {
|
|
|
|
|
warning('The database_max_overflow parameter is deprecated and will be \
|
|
|
|
|
removed in a future realse. Use ironic::db::database_max_overflow instead')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
include ironic::glance
|
|
|
|
|
include ironic::neutron
|
|
|
|
|
|
|
|
|
|