Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
617883a9a7 | ||
|
|
71a02e0f86 | ||
|
|
c4c8d6de7f | ||
|
|
8d96529d8f | ||
|
|
04e38f42b5 |
@@ -1,5 +1,3 @@
|
|||||||
# Ansible Collection
|
# Ansible Collection
|
||||||
|
|
||||||
Opinionated set of roles to configure reasonable defaults for newly provisioned Debian / Ubuntu VMs running Docker. The repository provides:
|
Opinionated set of roles to configure reasonable defaults for newly provisioned Debian / Ubuntu VMs running Docker. The repository provides a ready-to-use Ansible Collection (`studio.ansible`) containing reusable roles.
|
||||||
- An Ansible Collection (`studio.ansible`) containing reusable roles. Use with ansible-galaxy's `requirements.yml`.
|
|
||||||
- A ready-to-use playbook configured by passing CLI vars `--extra-vars "ansible_host=${HOST_IP}` e.g. through CI / CD.
|
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
[target]
|
|
||||||
target_host ansible_host="{{ ansible_host }}"
|
|
||||||
|
|
||||||
[all:vars]
|
|
||||||
ansible_user="{{ ansible_user }}"
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
---
|
|
||||||
- name: Setup machines
|
|
||||||
hosts: all
|
|
||||||
become: true
|
|
||||||
|
|
||||||
roles:
|
|
||||||
- base
|
|
||||||
- users
|
|
||||||
- security
|
|
||||||
- docker
|
|
||||||
# - backup
|
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
# ansible/roles/backup/defaults/main.yml
|
||||||
|
---
|
||||||
|
## Directories to include in the backup
|
||||||
|
backup_include_paths:
|
||||||
|
- /etc
|
||||||
|
- /opt/docker
|
||||||
|
|
||||||
|
## Directories to exclude from the backup
|
||||||
|
backup_exclude_paths: [] ## Nothing to exclude
|
||||||
|
|
||||||
|
## Restic retention policy
|
||||||
|
backup_retention_daily: 7
|
||||||
|
backup_retention_weekly: 4
|
||||||
|
backup_retention_monthly: 6
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
---
|
||||||
|
- name: Install restic
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: restic
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Initialize restic repository
|
||||||
|
environment:
|
||||||
|
RESTIC_REPOSITORY: "{{ vault_restic_repo_url }}"
|
||||||
|
RESTIC_PASSWORD: "{{ vault_restic_password }}"
|
||||||
|
AWS_ACCESS_KEY_ID: "{{ vault_aws_access_key }}"
|
||||||
|
AWS_SECRET_ACCESS_KEY: "{{ vault_aws_secret_key }}"
|
||||||
|
block:
|
||||||
|
- name: Check if already initialized
|
||||||
|
ansible.builtin.command: restic snapshots
|
||||||
|
register: restic_check
|
||||||
|
failed_when: false
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- name: Initialize repository
|
||||||
|
ansible.builtin.command: restic init
|
||||||
|
when: restic_check.rc != 0
|
||||||
|
|
||||||
|
- name: Deploy restic environment file
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: restic-backup.env.j2
|
||||||
|
dest: /etc/restic-backup.env
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: "0600" ## only root can read this file
|
||||||
|
|
||||||
|
- name: Deploy restic backup script
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: restic-backup.sh.j2
|
||||||
|
dest: /usr/local/bin/restic-backup.sh
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: "0700" ## only root can execute the script
|
||||||
|
|
||||||
|
- name: Deploy restic systemd service
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: restic-backup.service.j2
|
||||||
|
dest: /etc/systemd/system/restic-backup.service
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: "0644"
|
||||||
|
|
||||||
|
- name: Deploy restic systemd timer
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: restic-backup.timer.j2
|
||||||
|
dest: /etc/systemd/system/restic-backup.timer
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: "0644"
|
||||||
|
|
||||||
|
- name: Enable and start backup timer
|
||||||
|
ansible.builtin.systemd:
|
||||||
|
name: restic-backup.timer
|
||||||
|
enabled: yes
|
||||||
|
state: started
|
||||||
|
daemon_reload: yes
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Ansible managed
|
||||||
|
RESTIC_REPOSITORY="{{ vault_restic_repo_url }}"
|
||||||
|
RESTIC_PASSWORD="{{ vault_restic_password }}"
|
||||||
|
AWS_ACCESS_KEY_ID="{{ vault_aws_access_key }}"
|
||||||
|
AWS_SECRET_ACCESS_KEY="{{ vault_aws_secret_key }}"
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Run Restic Backup
|
||||||
|
After=network-online.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
EnvironmentFile=/etc/restic-backup.env
|
||||||
|
ExecStart=/usr/local/bin/restic-backup.sh
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
## Ansible managed
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Source environment variables if running manually/outside Systemd
|
||||||
|
if [ -f /etc/restic-backup.env ]; then
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
. /etc/restic-backup.env
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Starting Restic Backup at $(date)"
|
||||||
|
|
||||||
|
## Run the backup using paths and exclusions defined as group_vars
|
||||||
|
restic backup \
|
||||||
|
{% for path in backup_include_paths %}
|
||||||
|
"{{ path }}" \
|
||||||
|
{% endfor %}
|
||||||
|
{% for path in backup_exclude_paths %}
|
||||||
|
--exclude "{{ path }}" \
|
||||||
|
{% endfor %}
|
||||||
|
--cleanup-cache
|
||||||
|
|
||||||
|
restic forget \
|
||||||
|
--prune \
|
||||||
|
--keep-daily {{ backup_retention_daily }} \
|
||||||
|
--keep-weekly {{ backup_retention_weekly }} \
|
||||||
|
--keep-monthly {{ backup_retention_monthly }}
|
||||||
|
|
||||||
|
echo "Restic backup completed at $(date)"
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Run Restic Backup
|
||||||
|
|
||||||
|
[Timer]
|
||||||
|
OnCalendar=*-*-* 04:00:00
|
||||||
|
Persistent=true
|
||||||
|
RandomizedDelaySec=1800
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=timers.target
|
||||||
Reference in New Issue
Block a user