5e3b5e050f
If db sync fails, it is never retried leading to errors. So, this patch adds retries for db_sync to avoid sync fails. Change-Id: I094f592989928cefef0b9cd9c7b9d837f51d03b1 Closes-Bug: #1628580
35 lines
875 B
Puppet
35 lines
875 B
Puppet
#
|
|
# Class to execute heat dbsync
|
|
#
|
|
# ==Parameters
|
|
#
|
|
# [*extra_params*]
|
|
# (optional) String of extra command line parameters to append
|
|
# to the heat-manage db_sync command. These will be inserted
|
|
# in the command line between 'heat-manage' and 'db_sync'.
|
|
# Defaults to '--config-file /etc/heat/heat.conf'
|
|
#
|
|
class heat::db::sync(
|
|
$extra_params = '--config-file /etc/heat/heat.conf',
|
|
) {
|
|
|
|
include ::heat::deps
|
|
include ::heat::params
|
|
|
|
exec { 'heat-dbsync':
|
|
command => "heat-manage ${extra_params} db_sync",
|
|
path => '/usr/bin',
|
|
user => 'heat',
|
|
refreshonly => true,
|
|
try_sleep => 5,
|
|
tries => 10,
|
|
logoutput => on_failure,
|
|
subscribe => [
|
|
Anchor['heat::install::end'],
|
|
Anchor['heat::config::end'],
|
|
Anchor['heat::dbsync::begin']
|
|
],
|
|
notify => Anchor['heat::dbsync::end'],
|
|
}
|
|
}
|