Fix backups of multinode in prod
This commit is contained in:
parent
75f75732e7
commit
422ebd7ace
1 changed files with 21 additions and 40 deletions
|
@ -293,6 +293,23 @@ class sunetdrive::script (
|
||||||
warn_criteria => ['exit_status=1','max_age=2h'],
|
warn_criteria => ['exit_status=1','max_age=2h'],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
file { '/root/tasks/backupsinglenodedb.sh':
|
||||||
|
ensure => absent,
|
||||||
|
}
|
||||||
|
file { '/root/tasks/backupmultinodedb.sh':
|
||||||
|
ensure => file,
|
||||||
|
content => template('sunetdrive/script/backupmultinodedb.erb.sh'),
|
||||||
|
owner => 'root',
|
||||||
|
group => 'root',
|
||||||
|
mode => '0700',
|
||||||
|
}
|
||||||
|
sunet::scriptherder::cronjob { "backupmultinodedb":
|
||||||
|
cmd => "/root/tasks/backupmultinodedb.sh",
|
||||||
|
hour => '2',
|
||||||
|
minute => '0',
|
||||||
|
ok_criteria => ['exit_status=0','max_age=2d'],
|
||||||
|
warn_criteria => ['exit_status=1','max_age=3d'],
|
||||||
|
}
|
||||||
if $customer == 'common' {
|
if $customer == 'common' {
|
||||||
if $environment == 'prod' {
|
if $environment == 'prod' {
|
||||||
file { '/root/tasks/aggregate.sh':
|
file { '/root/tasks/aggregate.sh':
|
||||||
|
@ -309,39 +326,16 @@ class sunetdrive::script (
|
||||||
ok_criteria => ['exit_status=0','max_age=2d'],
|
ok_criteria => ['exit_status=0','max_age=2d'],
|
||||||
warn_criteria => ['exit_status=1','max_age=3d'],
|
warn_criteria => ['exit_status=1','max_age=3d'],
|
||||||
}
|
}
|
||||||
file { '/root/tasks/backupsinglenodedb.sh':
|
|
||||||
ensure => file,
|
|
||||||
content => template('sunetdrive/script/backupsinglenodedb.erb.sh'),
|
|
||||||
owner => 'root',
|
|
||||||
group => 'root',
|
|
||||||
mode => '0700',
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
file { '/root/tasks/backupsinglenodedb.sh':
|
|
||||||
ensure => absent,
|
|
||||||
}
|
|
||||||
file { '/root/tasks/backupmultinodedb.sh':
|
|
||||||
ensure => file,
|
|
||||||
content => template('sunetdrive/script/backupmultinodedb.erb.sh'),
|
|
||||||
owner => 'root',
|
|
||||||
group => 'root',
|
|
||||||
mode => '0700',
|
|
||||||
}
|
|
||||||
sunet::scriptherder::cronjob { "backupmultinodedb":
|
|
||||||
cmd => "/root/tasks/backupmultinodedb.sh",
|
|
||||||
hour => '2',
|
|
||||||
minute => '0',
|
|
||||||
ok_criteria => ['exit_status=0','max_age=2d'],
|
|
||||||
warn_criteria => ['exit_status=1','max_age=3d'],
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
$singlenodes.each | $singlenode| {
|
$singlenodes.each | $singlenode| {
|
||||||
$multinode = hiera_hash('multinode_mapping')[$singlenode]['server']
|
$multinode = hiera_hash('multinode_mapping')[$singlenode]['server']
|
||||||
$multinodeserver = "${multinode}.${site_name}"
|
$multinodeserver = "${multinode}.${site_name}"
|
||||||
$nccontainer = "nextcloud-${singlenode}_app_1"
|
$nccontainer = "nextcloud-${singlenode}_app_1"
|
||||||
|
|
||||||
|
sunet::scriptherder::cronjob { "backup${singlenode}db":
|
||||||
|
ensure => absent,
|
||||||
|
cmd => 'true',
|
||||||
|
}
|
||||||
sunet::scriptherder::cronjob { "listusers_${singlenode}":
|
sunet::scriptherder::cronjob { "listusers_${singlenode}":
|
||||||
cmd => "/root/tasks/listusers.sh ${singlenode} ${multinodeserver}",
|
cmd => "/root/tasks/listusers.sh ${singlenode} ${multinodeserver}",
|
||||||
minute => '*/5',
|
minute => '*/5',
|
||||||
|
@ -349,13 +343,6 @@ class sunetdrive::script (
|
||||||
warn_criteria => ['exit_status=1', 'max_age=60m'],
|
warn_criteria => ['exit_status=1', 'max_age=60m'],
|
||||||
}
|
}
|
||||||
if $environment == 'prod' {
|
if $environment == 'prod' {
|
||||||
sunet::scriptherder::cronjob { "backup${singlenode}db":
|
|
||||||
cmd => "/root/tasks/backupsinglenodedb.sh ${multinodeserver} ${singlenode}",
|
|
||||||
hour => '2',
|
|
||||||
minute => '0',
|
|
||||||
ok_criteria => ['exit_status=0','max_age=2d'],
|
|
||||||
warn_criteria => ['exit_status=1','max_age=3d'],
|
|
||||||
}
|
|
||||||
sunet::scriptherder::cronjob { "statistics${singlenode}":
|
sunet::scriptherder::cronjob { "statistics${singlenode}":
|
||||||
cmd => "/root/tasks/usage.sh ${singlenode} ${multinodeserver}",
|
cmd => "/root/tasks/usage.sh ${singlenode} ${multinodeserver}",
|
||||||
hour => '2',
|
hour => '2',
|
||||||
|
@ -364,12 +351,6 @@ class sunetdrive::script (
|
||||||
warn_criteria => ['exit_status=1','max_age=3d'],
|
warn_criteria => ['exit_status=1','max_age=3d'],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
sunet::scriptherder::cronjob { "backup${singlenode}db":
|
|
||||||
ensure => absent,
|
|
||||||
cmd => 'true',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
unless $singlenode in ['mau', 'uu'] {
|
unless $singlenode in ['mau', 'uu'] {
|
||||||
sunet::scriptherder::cronjob { "make${singlenode}buckets":
|
sunet::scriptherder::cronjob { "make${singlenode}buckets":
|
||||||
cmd => "/root/tasks/makebuckets.sh ${multinodeserver} ${nccontainer} ${singlenode}-${environment}",
|
cmd => "/root/tasks/makebuckets.sh ${multinodeserver} ${nccontainer} ${singlenode}-${environment}",
|
||||||
|
|
Loading…
Add table
Reference in a new issue