## Summary
Replace the cv (`cv.eblu.me`) and docs (`docs.eblu.me`) minikube Deployments with indri-native ansible roles. Caddy serves the extracted release tarballs directly via a new `kind: static` service-block — no daemon, no nginx pod, no ProxyGroup ingress on the request path. Mirrors the rationale of the recent devpi migration; part of the broader minikube wind-down.
## What's in this commit
- `ansible/roles/{cv,docs}` — sentinel-gated tarball download + extract into `~/{cv,docs}/content/`
- `ansible/roles/caddy/` — new `kind: static` branch in the Caddyfile template (encoded gzip, immutable cache headers for fingerprinted assets, optional `try_html` for Quartz-style clean URLs, optional per-path `download_paths` for the resume PDF's `Content-Disposition`)
- `ansible/playbooks/indri.yml` — wires `cv` and `docs` roles before `caddy`
- `service-versions.yaml` — both services flip to `type: ansible`. `docs.current-version` stays at `1.28.2` for this commit so `container-version-check` keeps passing while `containers/quartz/Dockerfile` still exists; it moves to the docs release tag in the cleanup commit
- `.forgejo/workflows/{cv-deploy,build-blumeops}.yaml` — deploy step now bumps `cv_version`/`docs_version` in the role defaults and pushes; running ansible + purging the Fly cache is manual from gilbert (matches devpi)
- Docs: `docs/how-to/operations/{cv,docs}-on-indri.md`, updated `docs/reference/services/{cv,docs}.md`, changelog fragment
## What is not in this commit
The dead artifacts. After PR review and successful cutover, a follow-up commit deletes:
- `argocd/apps/{cv,docs}.yaml` and `argocd/manifests/{cv,docs}/`
- `containers/cv/`, `containers/quartz/`
- `CONTAINER_TO_SERVICE['quartz']` mapping in `mise-tasks/container-version-check`
- bumps `docs.current-version` in `service-versions.yaml` to the release tag
## Cutover plan (manual, from gilbert, after review)
1. **Take down old:**
- Remove the cv and docs Applications: `argocd app delete cv --cascade && argocd app delete docs --cascade`
- Verify k8s namespaces gone: `kubectl --context=minikube-indri get ns | grep -E '^(cv|docs)\\b'` (should be empty)
- Verify tailnet MagicDNS no longer advertises the VIPs: `nslookup cv.tail8d86e.ts.net` and `nslookup docs.tail8d86e.ts.net` should both fail
2. **Bring up new:**
- `mise run provision-indri -- --tags cv,docs,caddy --check --diff` (already validated on branch)
- `mise run provision-indri -- --tags cv,docs,caddy`
- `fly ssh console -a blumeops-proxy -C "sh -c 'rm -rf /tmp/cache && nginx -s reload'"`
3. **Verify:** `mise run services-check` and the curl checks listed in `docs/how-to/operations/{cv,docs}-on-indri.md`
4. **Cleanup commit + merge.**
Total expected downtime: minutes (not the few-hour budget you authorized).
## Test plan
- [ ] `mise run provision-indri -- --tags cv,docs --check --diff` clean
- [ ] `mise run provision-indri -- --tags caddy --check --diff` shows only the cv + docs blocks changing as previewed in the PR thread
- [ ] After cutover: `cv.eblu.me`, `cv.ops.eblu.me`, `docs.eblu.me`, `docs.ops.eblu.me` all return 200
- [ ] `cv.eblu.me/resume.pdf` includes `Content-Disposition: attachment`
- [ ] A clean Quartz URL (e.g. `docs.eblu.me/explanation/agent-change-process`) resolves to the right page
- [ ] `mise run services-check` clean
- [ ] `mise run service-review --type ansible` shows cv and docs
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Reviewed-on: #342
2.6 KiB
2.6 KiB
| title | modified | last-reviewed | tags | ||
|---|---|---|---|---|---|
| CV | 2026-04-29 | 2026-04-29 |
|
CV (Resume)
Personal resume/CV served as a static HTML page with PDF download, built from YAML source via Jinja2 and WeasyPrint.
Quick Reference
| Property | Value |
|---|---|
| Public URL | cv.eblu.me (via flyio-proxy) |
| Private URL | cv.ops.eblu.me (Caddy on indri) |
| Deployment | Ansible role cv on indri (no daemon — Caddy serves files directly) |
| Content dir | ~/blumeops/cv/content/ on indri |
| Source repo | forge.eblu.me/eblume/cv (private, not mirrored to GitHub) |
| Content packages | forge.eblu.me/eblume/-/packages (generic package cv) |
Migrated from minikube to indri-native on 2026-04-29 (see cv-on-indri).
Architecture
- Source:
resume.yaml(content) +template.html(Jinja2) +style.cssin the cv repo - Build:
render.py(uv script runner) generatesindex.html; WeasyPrint generatesresume.pdf - Release: Dagger
buildfunction packagesindex.html,style.css,resume.pdfinto a tarball, uploaded to Forgejo generic packages - Deploy: ansible role downloads the tarball into
~/blumeops/cv/content/on indri; Caddy serves the directory directly
Endpoints
| Path | Description |
|---|---|
/ |
Resume HTML page |
/resume.pdf |
PDF download (Caddy adds Content-Disposition: attachment) |
Configuration
Key files (blumeops):
ansible/roles/cv/defaults/main.yml— pinnedcv_versionand tarball URLansible/roles/cv/tasks/main.yml— sentinel-gated download + extractansible/roles/caddy/defaults/main.yml—cvservice entry (kind: static,download_pathsfor the PDF)
Key files (cv repo):
resume.yaml— Resume content (YAML)template.html— Jinja2 HTML templatestyle.css— CSS with screen/print media queriesrender.py— uv script runner (PEP 723) that renders YAML → HTMLsrc/cv_ci/main.py— Dagger pipeline (alpine + uv + WeasyPrint).forgejo/workflows/cv-release.yaml— Release workflow
Release flow
- Release a new package from the cv repo (
Release CVworkflow) - Run the blumeops
Deploy CVworkflow → bumpscv_versionin the ansible role and pushes - Run
mise run provision-indri -- --tags cvfrom gilbert - Purge the Fly.io proxy cache so the new content is fetched
Related
- cv-on-indri — Operations how-to
- docs — Similar architecture (Caddy serving a tarball-extracted dir)
- flyio-proxy — Exposes
cv.eblu.mepublicly via Tailscale tunnel