Simple PostgreSQL backup tool to Azure with UI
- List tables and records of actual database
- Show last backup time
- Create backups with retention period
- Cleanup expired backups
- Restore backups
- Exclude tables from backup
- Can be used without UI as REST API. For example using a cronjob and curl
- Fully covered with E2E Selenium tests
- Compatible with PostgreSQL 16
- Tested with Cloudflare R2 Object Storage
- Java 21
- Spring Boot 3
- Web Components
- Java AWS SDK 2.x
AWS_S3_ENDPOINT_URL
AWS_S3_ACCESS_KEY_ID
AWS_S3_SECRET_ACCESS_KEY
AWS_S3_BUCKET
AWS_S3_REGION
POSTGRES_HOSTNAME
POSTGRES_PORT
POSTGRES_DB
POSTGRES_USER
POSTGRES_PASSWORD
SPRING_ACTUATOR_PORT
EXCLUDE_TABLES
- Comma-separated list of tables to exclude during backup
-
https://gist.github.com/valferon/4d6ebfa8a7f3d4e84085183609d10f14
-
https://cwienczek.com/2020/06/simple-backup-of-postgres-database-in-kubernetes/
-
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html
-
https://florianbuchner.com/kubernetes-curl-cronjob-for-internal-service/