pbsready-export.cfg.in 2.46 KB
Newer Older
1
[buildout]
2

3
extends = ${pbsready:output}
4

5 6 7 8 9 10 11 12
# Explicitely define extended parts from pbsready
# then add local parts
parts =
  logrotate
  logrotate-entry-cron
  logrotate-entry-equeue
  cron
  cron-entry-logrotate
13
  resilient-sshkeys-authority
14 15 16 17 18 19
  sshd-raw-server
  sshd-graceful
  sshkeys-sshd
  sshd-promise
  resilient-sshkeys-sshd-promise
  sshd-pbs-authorized-key
20
  notifier
21
  notifier-exporter-promise
22

23
  cron-entry-backup
24

25 26 27 28 29 30
[resilient-directory]
recipe = slapos.cookbook:mkdirectory
home = $${buildout:directory}
var = $${:home}/var
pid = $${:var}/pid

31 32 33
# Define port of ssh server. It has to be different from import so that it
# supports export/import using same IP (slaprunner, slapos-in-partition,
# ipv4...)
34 35 36 37 38
[sshd-port]
recipe = slapos.cookbook:free_port
minimum = 22200
maximum = 22209
ip = $${slap-network-information:global-ipv6}
39

40 41 42 43 44 45
[notifier-port]
recipe = slapos.cookbook:free_port
minimum = 65526
maximum = 65535
ip = $${notifier:host}

46
[resilient-publish-connection-parameter]
47 48 49
notification-id = http://[$${notifier:host}]:$${notifier:port}/get/$${notifier-exporter:name}

[notifier-exporter]
Marco Mariani's avatar
Marco Mariani committed
50 51
# notifier.notify launches an (exporter) executable, and when finished,
# notifies the the pull-backup-servers.
52 53 54 55 56 57 58
<= notifier
recipe = slapos.cookbook:notifier.notify
name = exporter
title = Dumping $${slap-parameter:namebase}
executable = $${exporter:wrapper}
wrapper = $${rootdirectory:bin}/exporter
notify = $${slap-parameter:notify}
59
pidfile = $${resilient-directory:pid}/$${:name}.pid
60
max-run = 3
61

62 63 64
[logrotate-entry-notifier]
output = $${rootdirectory:etc}/logrotate_notifier.conf

65 66 67 68 69 70 71
[notifier-exporter-promise]
recipe = slapos.recipe.template:jinja2
mode = 700
template = inline:
  #!${bash:location}/bin/bash
  EXPORTER_FEED="$${notifier-exporter:log-file}"
  FAILURE_PATTERN="FAILURE"
72 73 74
  if [ -s "$EXPORTER_FEED" ]; then
    tail -n 1 $EXPORTER_FEED | grep -vq FAILURE_PATTERN
  fi
75 76
rendered = $${basedirectory:promises}/exporter-status

77
[cron-entry-backup]
Marco Mariani's avatar
Marco Mariani committed
78 79
# Schedule the periodic database dump.
# Through notifications, this triggers (one or more) incremental backups on PBS instances.
80 81 82
<= cron
recipe = slapos.cookbook:cron.d
name = backup
83
frequency = $${slap-parameter:resiliency-backup-periodicity}
84
once-a-day = true
85
command = ${logrotate:location}/sbin/logrotate -s $${basedirectory:run}/logrotate.status $${logrotate-entry-notifier:output}; $${notifier-exporter:wrapper} --transaction-id `date +%s`
86 87

[slap-parameter]
88
# In cron.d format (i.e things like */15 * * * * are accepted).
89
resiliency-backup-periodicity =