1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# File 'modules/profile/manifests/wmcs/backy2.pp', line 1
class profile::wmcs::backy2(
String $cluster_name = lookup('profile::wmcs::backy2::cluster_name'),
Stdlib::Unixpath $data_dir = lookup('profile::ceph::data_dir'),
String $ceph_vm_pool = lookup('profile::ceph::client::rbd::pool'),
String $backup_interval = lookup('profile::wmcs::backy2::backup_time'),
) {
require profile::ceph::auth::deploy
if ! defined(Ceph::Auth::Keyring['admin']) {
notify{'profile::wmcs::backy2: Admin keyring not defined, things might not work as expected.': }
}
class {'::backy2':
cluster_name => $cluster_name,
}
file { '/etc/wmcs_backup_instances.yaml':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0644',
content => template('profile/wmcs/backy2/wmcs_backup_instances.yaml.erb');
}
file { '/usr/lib/python3/dist-packages/rbd2backy2.py':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0644',
source => 'puppet:///modules/profile/wmcs/backy2/rbd2backy2.py';
}
# Script to manage backups
file { '/usr/local/sbin/wmcs-backup':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0755',
source => 'puppet:///modules/profile/wmcs/backy2/wmcs-backup.py';
}
# Script to backup all VMs that are on ceph and
# in projects listed in wmcs_backup_instances.yaml
file { '/usr/local/sbin/wmcs-backup-instances':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0755',
source => 'puppet:///modules/profile/wmcs/backy2/wmcs-backup-instances.py';
}
# Script to cleanup expired backups. Expiration date is
# set when the backups are first created.
file { '/usr/local/sbin/wmcs-purge-backups':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0755',
source => 'puppet:///modules/profile/wmcs/backy2/wmcs-purge-backups.sh';
}
systemd::timer::job { 'backup_vms':
ensure => present,
description => 'Backup vms assigned to this host',
command => '/usr/local/sbin/wmcs-backup instances backup-assigned-vms',
interval => {
'start' => 'OnCalendar',
'interval' => $backup_interval,
},
logging_enabled => true,
monitoring_enabled => true,
monitoring_contact_groups => 'wmcs-team-email',
monitoring_notes_url => 'https://wikitech.wikimedia.org/wiki/Portal:Cloud_VPS/Admin/Runbooks/Check_unit_status_of_backup_vms',
user => 'root',
}
systemd::timer::job { 'purge_vm_backup':
ensure => present,
description => 'purge old VM backups; allow backy2 to decide what is too old',
command => '/usr/local/sbin/wmcs-purge-backups',
interval => {
'start' => 'OnCalendar',
'interval' => '*-*-* 00:05:00', # daily at five past midnight
},
logging_enabled => true,
monitoring_enabled => true,
monitoring_contact_groups => 'wmcs-team-email',
user => 'root',
}
}
|