FrankenPress is four repos that compose into one WordPress deployment:Documentation Index
Fetch the complete documentation index at: https://docs.frankenpress.com/llms.txt
Use this file to discover all available pages before exploring further.
The four repos
fp-runtime
Container image: Caddy + FrankenPHP + Souin compiled in. Published as
ghcr.io/eightoeight/fp-runtime:php8.3.fp-mu-plugin
Slim must-use plugin: S3 uploads bootstrap + Souin cache invalidator.
Composer-installable; baked into
fp-runtime by default.fp-site-template
GitHub template repo. Bedrock layout; composer.json with sensible
minimal deps. Builds your site image on
git push --tags.fp-charts
Helm chart
fp-site. Bitnami-style; bundles MariaDB + Redis + MinIO
for instant kind deploys.Request flow
save_post,
SouinInvalidator connects directly to Redis and DELs the relevant
keys (Souin’s documented HTTP-level invalidation APIs are broken in
cache-handler v0.16.0 — see
PHASE-0.md
for the investigation).
Image promotion
helm upgrade with a different image tag — no separate code-vs-config
to track.
This composes cleanly with image-promotion tooling like
Kargo or
Argo Rollouts but doesn’t
mandate them. The chart renders a plain Deployment; consumers wrap
with whatever orchestration they prefer.
What stays out
- No WooCommerce / Yoast / theme picks in
fp-site-template. Add what you need viacomposer require wpackagist-plugin/<slug>. - No GitOps controller. The chart renders k8s primitives; you bring your own Argo CD / Flux / Kargo.
- No multi-cluster federation. One namespace = one site (use multiple Helm releases for multiple sites in one cluster).
- No admin-installable plugins/themes/core updates. The image is the source of truth; the lockdown is hard-coded.
Production swap matrix
| Default (dev / kind) | Production |
|---|---|
bitnami/mariadb subchart | MariaDB Operator |
bitnami/redis subchart | DragonflyDB Operator (same RESP protocol, dramatically better single-node throughput) |
bitnami/minio subchart | AWS S3 / Cloudflare R2 / GCS XML |
| auto-generated WP keys+salts | External Secrets Operator → cloud secret manager |