ZhongShengping 767d291f7a Allow db sync timeouts to be configurable
As Openstack projects continue to have longer database migration
chains, the Puppet default timeout of 300 seconds for an execution
is becoming too short a duration on some hardware, leading to timeouts.
As projects continue to add more migration scripts without pruning
the base, timeouts will continue to become more frequent unless
this time can be expanded.

Change-Id: I1ef3bac653e5333feb6e2cf83025e6bb13eaebf4
Closes-Bug: #1904962
2020-11-23 09:27:52 +08:00

47 lines
1.3 KiB
Puppet

#
# Class to execute "keystone-manage db_sync
#
# == Parameters
#
# [*extra_params*]
# (Optional) String of extra command line parameters to append
# to the keystone-manage db_sync command. These will be
# inserted in the command line between 'keystone-manage' and
# 'db_sync' in the command line.
# Defaults to ''
#
# [*keystone_user*]
# (Optional) Specify the keystone system user to be used with keystone-manage.
# Defaults to $::keystone::params::keystone_user
#
# [*db_sync_timeout*]
# (Optional) Timeout for the execution of the db_sync
# Defaults to 300
#
class keystone::db::sync(
$extra_params = undef,
$keystone_user = $::keystone::params::keystone_user,
$db_sync_timeout = 300,
) inherits keystone::params {
include keystone::deps
exec { 'keystone-manage db_sync':
command => "keystone-manage ${extra_params} db_sync",
path => '/usr/bin',
user => $keystone_user,
refreshonly => true,
try_sleep => 5,
tries => 10,
timeout => $db_sync_timeout,
logoutput => on_failure,
subscribe => [
Anchor['keystone::install::end'],
Anchor['keystone::config::end'],
Anchor['keystone::dbsync::begin']
],
notify => Anchor['keystone::dbsync::end'],
tag => ['keystone-exec', 'openstack-db']
}
}