olsitec-foundation platform repo
backup/backup.sh (operator orchestrator) + backup-remote.sh (VM assembler) produce a CONTRACT_004 bundle in RustFS foundation-backups/<TS>/ and replicate it to the offsite olsitec-foundation bucket: pg_dumpall, forgejo git repos (tar.zst), vault raft snapshot, pulumi state, rustfs blobs, MANIFEST.json (sha256 + restore order). The timestamp is caller-supplied (§4.1); secrets travel on stdin (never argv, ADR-007); mc runs containerized. restore.sh + restore-remote.sh are the §4.6 verifier: pull a bundle (rfs or offsite), check MANIFEST shas, then NON-DESTRUCTIVELY reconstruct into scratch resources and assert (postgres users>0, olsitec/foundation.git present, vault snapshot non-empty). Live on cx33 Helsinki: bundle written to RustFS + offsite; restore-verify PASSES from BOTH sources (forgejo.user rows=2, repo present, 16KB vault snapshot). Known gap: at-rest age encryption (§4.3) not yet applied — both destinations are private/access-controlled; adding age (generate key + encrypt-before-upload) is the next hardening. Acceptance T12 met. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .forgejo/workflows | ||
| backup | ||
| bootstrap | ||
| containers/caddy-cloudflare | ||
| documentation | ||
| dr | ||
| offsite-backup | ||
| packages | ||
| preflight | ||
| provision | ||
| .gitignore | ||
| bun.lock | ||
| package.json | ||
| README.md | ||
| VERSIONS | ||
olsitec-foundation
The self-hosting platform "egg": a single Pulumi project that brings up Forgejo (+ Actions +
OCI/npm registry), PostgreSQL, HashiCorp Vault, RustFS (S3), and a reverse proxy as plain OCI
containers on one VM — recoverable from {a VM, this repo, the master passphrase}.
This is Layer 0. Kubernetes, ArgoCD and everything else are Layer-1 consumers of this foundation (see ADR-004).
Layout
bootstrap/— the egg Pulumi project (phases, components, config).packages/— shared, publishable Pulumi modules (@olsitec/pulumi-*).preflight/— host & toolchain validation (run before any deploy).backup/,dr/— backup + disaster-recovery automation..forgejo/workflows/— CI (preflight, pulumi preview/up, backup-verify).documentation/— planning, ADRs, contracts, baseline overlay. Readdocumentation/000_baseline.mdanddocumentation/000_TOPOLOGY.mdfirst.
Status
Planning complete (PLAN-001 vision, PLAN-002 strategy, ADR-004/005 accepted). Implementation not yet started — next step is T00 (contracts) per PLAN-002 §10.
Recovery in one line
git clone this repo → set PULUMI_CONFIG_PASSPHRASE → ./preflight/preflight.sh →
pulumi up → restore latest offsite backup. Full procedure: dr/RUNBOOK.md (TBD, task T13).