Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Raigad | 341 | 1 | 2 years ago | 3 | June 18, 2015 | 8 | apache-2.0 | Java | ||
Co-Process for backup/recovery, Auto Deployments and Centralized Configuration management for ElasticSearch | ||||||||||
Git S3 Push | 202 | 2 years ago | 5 | November 02, 2021 | 6 | mit | Go | |||
Deploy your git repo to an S3 bucket | ||||||||||
Flask Live Starter | 114 | 6 years ago | apache-2.0 | Python | ||||||
Fabric tasks to provision infrastructure and deploy Flask web applications | ||||||||||
Percona Openshift | 55 | a year ago | 4 | apache-2.0 | Shell | |||||
Set of scripts to run Percona software in OpenShift / Kubernetes | ||||||||||
Sitecore Powercore | 51 | 8 years ago | 1 | mit | PowerShell | |||||
Helper cmdlets which can be used to create simple Sitecore website deployment script in something like 50 lines of code. | ||||||||||
Akk Stack | 39 | 5 months ago | 4 | gpl-3.0 | Makefile | |||||
Containerized EverQuest Emulator Server Environment | ||||||||||
Backup Container | 29 | 5 months ago | 24 | apache-2.0 | Shell | |||||
A simple container for a simple backup strategy. | ||||||||||
Ansible Restic | 28 | 5 years ago | 4 | bsd-2-clause | Python | |||||
Deploy restic backup program | ||||||||||
Nextcloud Openshift | 24 | 4 years ago | mit | Shell | ||||||
OpenShift Template for Nextcloud | ||||||||||
Diaspora Openshift | 22 | 8 years ago | 4 | other | Ruby | |||||
Diaspora modified for easy deployment on OpenShift |
Deploys restic binary and cron jobs to trigger restic commands
None
restic_version: '0.9.2'
restic_url: ''
restic_download_path: '/opt/restic'
restic_install_path: '/usr/local/bin'
restic_jobs: []
restic_jobs_raw: []
restic_repos:
- name: example
url: '/backup'
password: 'foo'
init: True
# format:
# at: 'h m dom mon dow'
# type: < 'db_mysql' | 'db_pgsql' >
restic_jobs:
- at: '0 6 * * *'
type: 'db_mysql'
arg: 'blog'
- at: '0 8 * * *'
type: 'db_pgsql'
arg: 'users'
tags:
- postgres
- database
restic_jobs_raw:
- command: 'restic backup /var'
at: '0 4 * * *'
- command: 'restic backup /home'
at: '0 3 * * *'
user: 'restic'
# always keep last backup, keep daily backups for a week, weekly backups
# for a month, as well as six monthly backups.
- command: 'restic forget --keep-last 1 --keep-daily 7 --keep-weekly 4 --keep-monthly 6 --prune'
at: '30 22 * * 5' # every friday 22:30
user: 'restic'
Which produces /etc/cron.d/restic-example
file with the following content:
# restic backup jobs
# vi: ft=jinja.crontab
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
AWS_ACCESS_KEY_ID="ACCESS_KEY"
AWS_SECRET_ACCESS_KEY="SECRET_KEY"
RESTIC_REPOSITORY="/backup"
RESTIC_PASSWORD="foo"
0 6 * * * root mysqldump --routines --add-drop-table --default-character-set=utf8 blog | restic backup --stdin --stdin-filename db_mysql_blog.sql
0 8 * * * root su -c '/usr/bin/pg_dump --encoding=UTF8 "users"' postgres | restic backup --stdin --stdin-filename db_pgsql_users.sql --tag postgres --tag database
0 4 * * * root restic backup /var
0 3 * * * restic restic backup /home
30 22 * * 5 restic restic forget --keep-last 1 --keep-daily 7 --keep-weekly 4 --keep-monthly 6 --prune
None
Please, see tests/test.yml
for an example
BSD