CV (Resume)

Personal resume/CV served as a static HTML page with PDF download, built from YAML source via Jinja2 and WeasyPrint.

Quick Reference

PropertyValue
URLcv.ops.eblu.me (tailnet only, via caddy)
Namespacecv
Containerregistry.ops.eblu.me/blumeops/cv:v1.0.0
Source repoforge.ops.eblu.me/eblume/cv (private, not mirrored to GitHub)
Content packagesforge.ops.eblu.me/eblume/-/packages (generic package cv)
ArgoCD Appcv

Architecture

  1. Source: resume.yaml (content) + template.html (Jinja2) + style.css in the cv repo
  2. Build: render.py (uv script runner) generates index.html; WeasyPrint generates resume.pdf
  3. Release: Dagger build function packages index.html, style.css, resume.pdf into a tarball, uploaded to Forgejo generic packages
  4. Deploy: nginx container downloads the tarball at startup via CV_RELEASE_URL env var

Endpoints

PathDescription
/Resume HTML page
/resume.pdfPDF download (Content-Disposition: attachment)
/healthzHealth check (200 OK)

Configuration

Key files (blumeops):

  • containers/cv/Dockerfile — nginx:alpine container
  • containers/cv/start.sh — tarball download + extraction
  • containers/cv/default.conf — nginx config (gzip, caching, PDF headers)
  • argocd/manifests/cv/deployment.yamlCV_RELEASE_URL env var
  • argocd/apps/cv.yaml — ArgoCD Application

Key files (cv repo):

  • resume.yaml — Resume content (YAML)
  • template.html — Jinja2 HTML template
  • style.css — CSS with screen/print media queries
  • render.py — uv script runner (PEP 723) that renders YAML → HTML
  • src/cv_ci/main.py — Dagger pipeline (alpine + uv + WeasyPrint)
  • .forgejo/workflows/cv-release.yaml — Release workflow

Secrets

SecretRepoSourceDescription
FORGE_TOKENcv1Password (via Ansible)Forgejo API token for package uploads

Provisioned via forgejo_actions_secrets Ansible role. See create-release-artifact-workflow.