Skip to content
Snippets Groups Projects
application.yaml 991 B
Newer Older
location:
    source_directories:
        - {{ application_dir }}
    repositories:
        - /var/backups/borg/{{ application }}_{{ application_id }}
{% if application_remote_repo %}
        - {{ application_remote_repo }}
{% endif %}
    exclude_patterns:
        - '*.pyc'
        - '*/.git'
        - '*/.svn'
        - '*/vendor/*'
        - '*/node_modules/*'
storage:
    encryption_passphrase: '{{ borgbackup.passphrase }}'
retention:
    keep_daily: 7
    keep_weekly: 8
    keep_monthly: 12
    keep_yearly: 30
consistency:
    checks:
        - repository
        - archives
hooks:
    on_error:
        - /usr/local/bin/alertalerta.py{% if netdata_alerta_project_id is defined %} --pid={{ netdata_alerta_project_id }}{% endif %} {{ inventory_hostname }} {{ netdata_alerta_environment|default("production") }} {{ netdata_alerta_webhook }} {{ netdata_alerta_apikey }} '{"resource":"{{ inventory_hostname }}","event":"Borg Backup Exception {{ application }} {{ application_id }}"}'