fix production issues
Build & Push / Pipeline Tests (push) Failing after 59s
Build & Push / Build & Push Docker Image (push) Has been skipped
Test / Type Check (all packages) (push) Failing after 51s
Test / API Unit Tests (push) Has been skipped
Test / Homepage Unit Tests (push) Has been skipped
Test / Carplace Unit Tests (push) Has been skipped
Test / Admin Unit Tests (push) Has been skipped
Test / Dashboard Unit Tests (push) Has been skipped
Test / API Integration Tests (push) Has been skipped

This commit is contained in:
root
2026-08-12 16:48:41 -04:00
parent 53de25120a
commit 8fc88ffc14
117 changed files with 4717 additions and 1443 deletions
+22
View File
@@ -104,8 +104,30 @@ ls -lh backups/rentaldrivego-prod-<timestamp>/
cat backups/rentaldrivego-prod-<timestamp>/manifest.txt
```
Run the Phase 2 smoke check (required artifacts + non-empty manifest):
```bash
bash scripts/backup-restore-smoke-check.sh backups/rentaldrivego-prod-<timestamp>
```
Test that the database dump is valid:
```bash
pg_restore --list backups/rentaldrivego-prod-<timestamp>/postgres.dump | head -20
```
### RPO / RTO evidence checklist
Record after each restore drill:
| Field | Target | Actual |
|-------|--------|--------|
| Backup timestamp | — | |
| Restore start / end | — | |
| RPO achieved (data lag) | ≤ declared RPO | |
| RTO achieved (time to healthy `/ready`) | ≤ declared RTO | |
| Smoke check | PASS | |
| App `/health` + `/ready` | 200 | |
| Spot-check bookings / invoices / uploads | OK | |
Declared targets live with ops owners; do not claim production ready without a dated drill that meets them.