Files
dbbackup/deploy/ansible/with-exporter.yml
Alexander Renz 13c2608fd7
All checks were successful
CI/CD / Test (push) Successful in 1m7s
CI/CD / Lint (push) Successful in 1m1s
CI/CD / Integration Tests (push) Successful in 43s
CI/CD / Build & Release (push) Has been skipped
feat: add enterprise deployment examples
- Ansible: basic, with-exporter, with-notifications, enterprise playbooks
- Kubernetes: CronJob, ConfigMap, ServiceMonitor, PVC manifests
- Prometheus: alerting rules (RPO/RTO/failure) and scrape configs
- Terraform: AWS S3 bucket with lifecycle policies
- Scripts: GFS backup rotation and health check (Nagios compatible)

All playbooks support:
- Scheduled backups with systemd timers
- GFS retention policies
- Prometheus metrics exporter
- SMTP/Slack/webhook notifications
- Encrypted backups with cloud upload
2026-01-26 04:03:58 +01:00

53 lines
1.3 KiB
YAML

---
# dbbackup with Prometheus Exporter
# Installation with metrics endpoint for monitoring
#
# Usage:
# ansible-playbook -i inventory with-exporter.yml
#
# Features:
# ✓ Automated daily backups
# ✓ Retention policy
# ✓ Prometheus exporter on port 9399
# ✗ No notifications
- name: Deploy dbbackup with Prometheus exporter
hosts: db_servers
become: yes
vars:
dbbackup_exporter_enabled: true
dbbackup_exporter_port: 9399
dbbackup_notify_enabled: false
roles:
- dbbackup
post_tasks:
- name: Wait for exporter to start
wait_for:
port: "{{ dbbackup_exporter_port }}"
timeout: 30
- name: Test metrics endpoint
uri:
url: "http://localhost:{{ dbbackup_exporter_port }}/metrics"
return_content: yes
register: metrics_response
- name: Verify metrics available
assert:
that:
- "'dbbackup_' in metrics_response.content"
fail_msg: "Metrics endpoint not returning dbbackup metrics"
success_msg: "Prometheus exporter running on port {{ dbbackup_exporter_port }}"
- name: Display Prometheus scrape config
debug:
msg: |
Add to prometheus.yml:
- job_name: 'dbbackup'
static_configs:
- targets: ['{{ inventory_hostname }}:{{ dbbackup_exporter_port }}']