This commit uncomments the PostgreSQL backup section in the backup playbook to enable regular backups of the PostgreSQL database. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
21 lines
495 B
YAML
21 lines
495 B
YAML
---
|
|
# - name: setup cron report
|
|
# ansible.builtin.import_playbook: cron_report.yml
|
|
|
|
- name: postgres
|
|
ansible.builtin.import_playbook: postgres.yml
|
|
vars:
|
|
backup_root_dir: "/mnt/backups"
|
|
backup_dirname: "postgres"
|
|
|
|
- name: gitea
|
|
ansible.builtin.import_playbook: gitea.yml
|
|
vars:
|
|
backup_root_dir: "/mnt/backups"
|
|
backup_dirname: "gitea"
|
|
|
|
- name: k3s_pvc
|
|
ansible.builtin.import_playbook: k3s_pvc.yml
|
|
vars:
|
|
backup_root_dir: "/mnt/backups"
|
|
backup_dirname: "k3s_pvc" |